-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "setup-dafny-action",
"version": "2.0.0",
"description": "Setup Dafny in a Github Action Runner",
"main": "index.js",
"scripts": {
"lint": "prettier -c *.js *.json *.md test/*.js; eslint **.js test/**.js",
"format": "prettier --write -c *.js *.json *.md test/*.js; eslint --fix **.js test/**.js",
"package": "ncc build index.js -o dist",
"test": "mocha"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1"
},
"bin": "./local.js",
"files": [
"*.js"
],
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"chai": "^4.3.6",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"prettier": "^2.7.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write --ignore-path dist/**",
"eslint --fix --ignore-pattern dist/**"
],
"*.{json,md}": [
"prettier --write"
]
}
}