generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "@advancedcsg/actions-rush-helper",
"version": "1.4.6",
"description": "GitHub Action RushJS helper",
"main": "src/main.js",
"scripts": {
"test": "jest --coverage",
"build": "npm run buildRestore && npm run buildSave",
"buildRestore": "ncc build src/restore.js -o dist/restore --source-map --license licenses.txt",
"buildSave": "ncc build src/save.js -o dist/save --source-map --license licenses.txt",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/advancedcsg-open/actions-rush.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Rush"
],
"author": "Martin Reynolds",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"hasha": "^5.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@vercel/ncc": "^0.36.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.29.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"nock": "^13.2.9",
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"/dist/",
"/__test__/"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}