-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "black-jack-api",
"description": "Simple node.js api using feathers.js framework",
"version": "0.0.0",
"homepage": "",
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"repository": {},
"author": {
"name": "Vladimir Dmitrovskiy",
"email": "[email protected]",
"url": "https://github.com/dmitrovskiy"
},
"contributors": [],
"bugs": {},
"engines": {
"node": ">= 6.9.1"
},
"scripts": {
"test": "npm run jshint && npm run ava",
"jshint": "jshint src test --config",
"start": "node dist/",
"start:dev": "DEBUG=app* babel-node src/",
"ava:unit": "nyc ava -v ./test/unit/**/**/*.test.js",
"ava:integration:parallel": "NODE_ENV=test ava -v ./test/integration/**/**/*.parallel.test.js",
"ava:integration:serial": "NODE_ENV=test ava -s -v ./test/integration/**/**/*.serial.test.js",
"build": "BABEL_ENV=production babel src -d dist"
},
"ava": {
"babel": "inherit",
"require": [
"babel-polyfill",
"babel-register"
],
"concurrency": 5
},
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "1.15.2",
"compression": "1.6.2",
"cors": "2.8.1",
"feathers": "2.0.2",
"feathers-configuration": "0.3.3",
"feathers-errors": "2.4.0",
"feathers-hooks": "1.6.1",
"feathers-mongoose": "3.5.3",
"feathers-rest": "1.5.1",
"lodash": "4.16.6",
"mongoose": "4.6.5",
"mongoose-hidden": "0.6.4",
"randomstring": "^1.1.5",
"serve-favicon": "2.3.0",
"winston": "2.3.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"chai": "3.5.0",
"jshint": "2.9.4",
"nodemon": "^1.11.0",
"nyc": "^9.0.1",
"proxyquire": "1.7.10",
"sinon": "1.17.6",
"supertest": "^2.0.1",
"supertest-promised": "^1.0.0"
}
}