-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 961 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
{
"name": "zip-npm-files",
"version": "1.0.0",
"description": "Zip specific files of npm project for deployment and distribution",
"author": "Pavel Roslovets (https://github.com/roslovets)",
"private": false,
"keywords": [
"action",
"github",
"zip",
"npm",
"deployment"
],
"homepage": "https://github.com/Roslovets-Inc/zip-npm-files",
"bugs": "https://github.com/Roslovets-Inc/zip-npm-files/issues",
"repository": {
"type": "git",
"url": "https://github.com/Roslovets-Inc/zip-npm-files.git"
},
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"build": "ncc build src/index.js --license licenses.txt",
"postversion": "cross-var git add package.json package-lock.json && git commit -mv%npm_package_version% && git push"
},
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.7",
"bestzip": "^2.2.0"
},
"devDependencies": {
"cross-var": "^1.1.0"
}
}