-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "bce-service-base",
"version": "0.1.0",
"description": "百度云-基础服务",
"main": "./src/index.js",
"scripts": {
"lint": "eslint src *.js",
"start": "DEBUG=bce-service-base:info node -r babel-register src/index.js",
"compile": "rm -rf dist && babel src --out-dir dist --source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mudio/bce-service-base.git"
},
"author": "木休大人",
"license": "MIT",
"bugs": {
"url": "https://github.com/mudio/bce-service-base/issues"
},
"homepage": "https://github.com/mudio/bce-service-base#readme",
"dependencies": {
"configstore": "^2.1.0",
"debug": "^2.3.3",
"leveldown": "^1.5.0",
"levelup": "^1.3.3",
"lodash": "^4.17.2",
"os-homedir": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"eslint": "^3.12.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0"
}
}