-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
36
37
38
39
40
41
42
43
44
45
{
"name": "openload-cli",
"version": "1.0.8",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/leftjs/openload-cli.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"commander": "^2.9.0",
"jsonfile": "^2.4.0"
},
"bin": {
"openload": "./bin/openload"
},
"keywords": [
"openload",
"cli"
],
"authors": [
"leftjs <leftjs@foxmail.com> (https://github.com/leftjs)"
],
"bugs": {
"url": "https://github.com/leftjs/openload-cli/issues"
},
"scripts": {
"start": "babel-node ./src/openload.js",
"dev": "nodemon --watch src/ --exec npm run start --",
"clean": "rimraf ./bin && mkdir ./bin",
"build": "cross-env NODE_ENV=production babel src/openload.js --out-file ./bin/openload",
"dist": "npm run clean && npm run build",
"start:dist": "./bin/openload"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"cross-env": "^3.1.4",
"nodemon": "^1.11.0",
"rimraf": "^2.5.4"
}
}