generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 KB
/
package.json
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
{
"name": "girssa",
"version": "v1.1.0",
"description": "GitHub RSS Action",
"main": "src/index.js",
"scripts": {
"debug": "node --inspect",
"fix": "npx prettier --ignore-path .eslintignore --write .",
"lint": "npx eslint .",
"test": "npx jest --clearMocks",
"test-debug": "node --inspect $(npm bin)/jest --clearMocks",
"coverage": "npx jest --clearMocks --coverage",
"action-build": "NODE_OPTIONS=--no-experimental-fetch npx ncc --debug build --minify --out dist --source-map --license licenses.txt src/index.js ",
"build": "npm run action-build && npm run web-build",
"web-all": "npm run fix && npm run web-build",
"web-serve": "node web/serve",
"web-build": "npx html-minifier-terser -c web/html-minify-conf.json web/index.html -o web/index.min.html",
"all": "npm clean-install && npm run fix && npm run lint && npm run coverage && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nobe4/girssa.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "nobe4",
"license": "MIT",
"bugs": {
"url": "https://github.com/nobe4/girssa/issues"
},
"homepage": "https://github.com/nobe4/girssa#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"fast-xml-parser": "^4.2.4"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"eslint": "^8.35.0",
"crypto-js": "^4.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"html-minifier-terser": "^7.1.0",
"jest": "^29.5.0",
"prettier": "2.8.4"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 0
}
}
}
}