forked from bahmutov/npm-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
{
"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": {
"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/core": "1.2.0",
"@actions/exec": "1.0.1",
"@actions/io": "1.0.1",
"@bahmutov/print-env": "1.2.0",
"cache": "github:cypress-io/github-actions-cache#8bec6cc",
"hasha": "5.1.0",
"quote": "0.4.0"
},
"devDependencies": {
"@types/node": "^12.0.4",
"@zeit/ncc": "0.20.5",
"chai": "4.2.0",
"husky": "3.0.9",
"mocha": "7.0.1",
"prettier": "1.19.1",
"proxyquire": "2.1.3",
"semantic-release": "^15.13.30",
"sinon": "8.1.1",
"sinon-chai": "3.4.0"
},
"private": false,
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"files": [
"action.yml",
"index.js",
"dist"
]
}