-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.17 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
{
"name": "project-release-pipeline-poc",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/types",
"scripts": {
"bundle": "shx rm -rf dist && ncc build out/index.js -so dist",
"compile": "shx rm -rf out && shx rm -rf dist/types && tsc",
"build": "npm run compile && npm run bundle",
"make-release": "shx rm -rf release && shx mkdir -p release && cd dist && zip -r ../release/release-artifacts.zip *",
"test": "echo \\\"No test specified.\\\" && exit 0",
"version": "npm run build && git add ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fortinet/project-release-pipeline-poc.git"
},
"author": "Fortinet (github@fortinet.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fortinet/project-release-pipeline-poc/issues"
},
"homepage": "https://github.com/fortinet/project-release-pipeline-poc#readme",
"devDependencies": {
"@types/node": "^14.14.35",
"@vercel/ncc": "^0.27.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"typescript": "^4.2.3"
}
}