-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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": "awesome-crud",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "NODE_PATH=./ nodemon app.js",
"test": "NODE_PATH=./ LOG_LEVEL=warn mocha \"scr/test/**/*test.js\"",
"lint-js": "eslint --ext .js ./scr/main/"
},
"//": "add tests to pre-push",
"pre-push": [
"lint-js",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/denisdnc/awesome-crud.git"
},
"author": "Denis De Nadai Carraro",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/denisdnc/awesome-crud/issues"
},
"homepage": "https://github.com/denisdnc/awesome-crud#readme",
"dependencies": {
"approvejs": "^3.1.2",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"mongodb": "^2.2.31",
"parse-fn-args": "0.0.2",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^4.0.2",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.4.2",
"mongo-in-memory": "0.0.5",
"pre-push": "^0.1.1",
"supertest": "^3.0.0"
}
}