-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 KB
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
{
"name": "test",
"description": "test",
"version": "0.0.0",
"homepage": "",
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"repository": {},
"author": {},
"contributors": [],
"bugs": {},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint src/. test/. --config",
"start": "nodemon src/",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"cors": "^2.7.1",
"feathers": "^2.0.0",
"feathers-authentication": "^0.7.0",
"feathers-configuration": "^0.2.1",
"feathers-errors": "^2.0.1",
"feathers-hooks": "^1.5.0",
"feathers-mongoose": "^3.3.6",
"feathers-rest": "^1.0.0",
"feathers-socketio": "^1.0.0",
"mongoose": "^4.4.12",
"passport": "^0.3.2",
"serve-favicon": "^2.3.0",
"winston": "^2.2.0"
},
"devDependencies": {
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"request": "^2.71.0"
}
}