-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "coral",
"description": "Node JS framework to dynamically create REST application with express and mongoose Models",
"version": "0.5.4",
"author": {
"name": "Prathamesh Satpute",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"rest",
"mongoose",
"express",
"node"
],
"scripts": {
"lint": "standard ./lib/**/*.js ./test/**/*.spec.js --fix",
"test": "npm run lint && istanbul cover _mocha ./test/**/*.spec.js",
"test:watch": "mocha --watch ./test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/prathamesh7pute/coral.git"
},
"dependencies": {
"async": "^3.2.4",
"express": "^4.18.1",
"underscore": "^1.13.6"
},
"devDependencies": {
"body-parser": "^1.20.0",
"istanbul": "^0.4.5",
"mocha": "^10.0.0",
"mongoose": "^6.6.2",
"should": "^13.2.3",
"standard": "^17.0.0",
"supertest": "^6.2.4"
},
"standard": {
"env": {
"node": true,
"mocha": true
}
}
}