-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 837 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
{
"name": "persist-action-data",
"version": "1.0.0",
"description": "Allows variables to be shared between GitHub Action jobs",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nick-invision/persist-action-data.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nick-invision/persist-action-data/issues"
},
"homepage": "https://github.com/nick-invision/persist-action-data#readme",
"devDependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@zeit/ncc": "0.22.1",
"action-gen": "1.1.3",
"husky": "^4.3.8",
"rimraf": "3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ."
}
}
}