forked from ethanresnick/json-api-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 968 Bytes
/
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
{
"name": "api-example",
"version": "1.0.0",
"private": true,
"main": "src/index.js",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"body-parser": "^1.3.1",
"confit": "^1.1.2",
"express": "~4.4.x",
"express-session": "^1.3.1",
"express-simple-firewall": "1.0.x",
"express-simple-router": "0.0.x",
"json-api": "2.x.x",
"path-to-regexp": "0.1.2",
"mongoose": "4.0.x",
"pluralize": "0.0.10",
"q": "^1.0.1"
},
"devDependencies": {
"chai": "~1.9.0",
"event-stream": "3.1.x",
"gulp": "3.8.x",
"gulp-changed": "0.2.x",
"gulp-clean": "0.2.x",
"gulp-exec": "1.0.x",
"gulp-filter": "0.3.x",
"gulp-jshint": "^1.6.4",
"gulp-mocha": "^0.4.1",
"gulp-replace": "0.2.x",
"gulp-util": "2.2.x",
"mocha": "~1.10.0",
"sinon": "1.10.2",
"sinon-chai": "2.5.x",
"supertest": "~0.8.2"
},
"scripts": {
"test": "mocha $(find test -name \"*.js\")"
}
}