-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
67 lines (67 loc) · 1.61 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
61
62
63
64
65
66
67
{
"name": "npm-install",
"version": "0.0.0-development",
"description": "GitHub Action for install npm dependencies with caching without any configuration",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write './**/*'",
"format:check": "prettier --check './**/*'",
"test": "npm run unit",
"unit": "mocha test/helper 'test/*spec.js'",
"pretest": "npm run build",
"build": "ncc build -o dist index.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/npm-install.git"
},
"keywords": [
"github",
"action",
"github-action",
"npm",
"install"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/npm-install/issues"
},
"homepage": "https://github.com/bahmutov/npm-install#readme",
"dependencies": {
"@actions/cache": "4.0.0",
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/io": "1.1.3",
"@bahmutov/print-env": "2.1.2",
"hasha": "5.2.2",
"quote": "0.4.0"
},
"devDependencies": {
"@types/node": "^12.0.4",
"@vercel/ncc": "0.38.1",
"chai": "4.2.0",
"husky": "3.0.9",
"mocha": "7.0.1",
"prettier": "1.19.1",
"proxyquire": "2.1.3",
"semantic-release": "24.2.0",
"sinon": "8.1.1",
"sinon-chai": "3.4.0"
},
"private": false,
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:check && npm test"
}
},
"files": [
"action.yml",
"index.js",
"dist"
]
}