-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 934 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": "zowe-sourceball",
"version": "0.0.1",
"description": "Takes source code for Zowe components at a given tag level, and builds a sourceball.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "[email protected]",
"license": "EPL-2.0",
"private": true,
"dependencies": {
"@octokit/rest": "^16.17.0",
"adm-zip": "^0.4.13",
"async": "^2.6.2",
"download": "^7.1.0",
"rimraf": "^2.6.3",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "tsc --pretty && tslint --format stylish -c ./tslint-packages.json \"src/**/*.ts\"",
"sourceball": "yarn build && node lib/index.js 2>&1 | tee output/log.txt"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/async": "^2.4.1",
"@types/download": "^6.2.4",
"@types/node": "10.14.0",
"@types/rimraf": "^2.0.2"
}
}