-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "ctoai-action",
"version": "1.2.0",
"description": "CTO.ai Github Action",
"main": "src/index.js",
"keywords": [],
"author": "CTO.ai",
"license": "ISC",
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"nock": "^13.0.4",
"node-forge": "^0.10.0",
"node-rsa": "^1.1.1",
"snazzy": "^8.0.0",
"standard": "^14.3.4",
"tap": "^14.10.8"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"got": "^11.8.1"
},
"scripts": {
"build": "ncc build src/index.js",
"lint": "standard | snazzy",
"fix": "standard --fix",
"test": "NOCK_ENABLED=true tap -j1 -R classic",
"integration": "tap -j1 -R classic",
"validate": "npm run lint && npm run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run validate"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npm run fix"
]
},
"standard": {
"ignore": [
"src/index.js",
"dist/"
]
}
}