-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 984 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
{
"name": "alien",
"version": "1.0.12",
"description": "Automated Load Inducing Emulation Network",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"build": "npm run clean && npm run bundle && npm run package",
"clean": "rimraf dist/* && mkdir dist || exit 0",
"bundle": "browserify --node --exclude supports-color src/index.js | uglifyjs >dist/alien.js",
"package": "pkg -t node10-win-x64,node10-linux-x64,node10-macos-x64 --output dist/alien src/index.js",
"archive": "cd dist && tar cvz * > ../alien-${npm_package_version}.tgz",
"env": "env",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "austin.france@redskyit.com",
"license": "MIT",
"dependencies": {
"commander": "^4.1.1",
"encoding": "^0.1.13",
"jshint": "^2.13.4",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"browserify": "^16.2.3",
"pkg": "^4.4.8",
"rimraf": "^2.6.2",
"uglify-es": "^3.3.9"
}
}