-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
46
47
{
"name": "@bpanel/bpanel-cli",
"version": "1.0.2",
"description": "CLI tool for building bpanel plugins",
"main": "index.js",
"scripts": {
"babel": "babel lib -d dist",
"clean": "rm -f ./dist/*.js",
"prepublish": "make babel",
"watch": "npm run babel -- --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "[email protected]:bpanel-org/bpanel-cli.git",
"keywords": [
"cli",
"bpanel",
"bcoin"
],
"prettier": {
"singleQuotes": true
},
"preferGlobal": true,
"bin": {
"bpanel-cli": "./dist/program.js"
},
"author": "bcoin-org",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"bcfg": "^0.1.2",
"blgr": "^0.1.1",
"brq": "^0.1.2",
"bsert": "0.0.4",
"chalk": "^2.3.1",
"commander": "^2.14.1",
"fs-extra": "^5.0.0",
"inquirer": "^5.1.0",
"prettier": "^1.11.1",
"semver": "^5.5.0",
"underscore": "^1.8.3",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"eslint": "^4.9.0"
}
}