-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 935 Bytes
/
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
{
"name": "setup-nox",
"version": "2.0.0",
"private": true,
"description": "Action to set up Nox",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/setup-python.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/excitedleigh/setup-nox.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Leigh Brenecki <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/tool-cache": "2.0.1"
},
"devDependencies": {
"@types/node": "16.11.26",
"@zeit/ncc": "^0.22.3",
"husky": "^6.0.0",
"prettier": "2.6.2",
"typescript": "4.6.3"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run format-check && npm run build && git add dist/"
}
}
}