-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "open-rest-helper-rest",
"version": "2.2.0",
"description": "open-rest 的 helper 插件,用来实现 CRUD 的标准操作",
"main": "index.js",
"scripts": {
"_test": "mocha",
"test": "npm run eslint && nyc --reporter=lcov --reporter=text-summary npm run _test",
"eslint": "eslint {./index.js,./lib,./test} && echo '\u001b[32m\u001b[1mEslint validate success.\u001b[22m\u001b[39m'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/open-node/open-rest-helper-rest.git"
},
"keywords": [
"restapi",
"controller",
"helper",
"assistant",
"restify",
"open-rest"
],
"author": "Redstone Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-node/open-rest-helper-rest/issues"
},
"homepage": "https://github.com/open-node/open-rest-helper-rest#readme",
"dependencies": {
"async": "^2.0.1",
"func-delegate": "^0.3.1",
"lodash": "*",
"mysql": "*"
},
"devDependencies": {
"open-rest-with-mysql": "*",
"open-rest": "*",
"babel-eslint": "^7.1.1",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"mocha": "^3.0.2",
"codecov": "^1.0.1",
"nyc": "^10.0.0"
}
}