forked from GrantBirki/issue-template-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "issue-template-parser",
"private": true,
"version": "0.0.0",
"description": "A GitHub Action to convert issues created from issue templates into machine readable JSON",
"main": "index.js",
"scripts": {
"format": "prettier --write '**/*.js'",
"format-check": "prettier --check '**/*.js'",
"lint": "eslint ./*.js",
"package": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "(jest && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg",
"ci-test": "jest",
"all": "npm run format && npm run lint && npm run package",
"bundle": "npm run format && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GrantBirki/issue-template-parser.git"
},
"keywords": [
"github",
"action",
"issue",
"template",
"parser",
"json"
],
"author": "Grant Birkinbine",
"license": "ISC",
"bugs": {
"url": "https://github.com/GrantBirki/issue-template-parser/issues"
},
"homepage": "https://github.com/GrantBirki/issue-template-parser#readme",
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@vercel/ncc": "^0.36.1",
"jest": "^29.1.2",
"prettier": "2.5.1",
"make-coverage-badge": "^1.2.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^25.3.2"
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./parse.js"
],
"coverageThreshold": {
"global": {
"lines": 100
}
}
}
}