-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.28 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
48
49
50
51
52
53
54
55
{
"name": "ddv-restful-api",
"version": "0.4.14",
"description": "ddv-restful-api",
"main": "./index.js",
"scripts": {
"lint": "eslint --ext .js lib --ignore-pattern dist",
"dist": "npm run lint&&webpack",
"precommit": "npm run dist",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ddvjs/ddv-restful-api.git"
},
"keywords": [
"restfulapi",
"api"
],
"author": "hua,huadi",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddvjs/ddv-restful-api/issues"
},
"jshintConfig": {
"esversion": 6,
"undef": true,
"unused": true,
"node": true,
"predef": [
"module",
"require",
"console",
"process"
]
},
"homepage": "https://github.com/ddvjs/ddv-restful-api#readme",
"devDependencies": {
"babel-core": "~6.26.0",
"babel-loader": "~7.1.2",
"babel-eslint": "~8.2.1",
"babel-preset-es2015": "~6.24.1",
"eslint": "^3.10.2",
"eslint-plugin-html": "^1.3.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"webpack": "^2.2.0",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"ddv-auth": "~0.0.11",
"crypto-js": "~3.1.9-1"
}
}