-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "open-rest",
"version": "8.0.3",
"description": "Standard rest server, Base on restify and sequelize",
"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": "https://github.com/open-node/open-rest.git"
},
"keywords": [
"rest",
"api",
"open-rest"
],
"author": "Redstone Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-node/open-rest/issues"
},
"homepage": "https://github.com/open-node/open-rest",
"dependencies": {
"lodash": "^4.15.0",
"open-router": "1.0.1",
"restify": "4.3.2"
},
"devDependencies": {
"axios": "^0.14.0",
"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": "^11.3.0"
}
}