-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.85 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
{
"name": "api",
"version": "1.0.0",
"revision": "inDev",
"description": "",
"main": "index.js",
"bin": {
"api": "./bin/api",
"api-explain-config": "./bin/api-explain-config"
},
"scripts": {
"start": "./bin/api",
"dev": "nodemon ./bin/api",
"test": "mocha --bail test/*.spec.js",
"nomad": "nomad --force-apply",
"cover": "istanbul cover _mocha test/*.spec.js",
"cover:check": "open coverage/lcov-report/index.html",
"eslint": "eslint . --ext .js",
"eslint:fix": "eslint . --fix .js",
"config": "./bin/api-explain-config"
},
"dependencies": {
"async": "^2.0.1",
"auth0": "^2.6.0",
"bcrypt": "^1.0.0",
"body-parser": "^1.15.2",
"cors": "^2.7.1",
"express": "^4.15.2",
"express-jwt": "^5.0.0",
"express-rest-api": "^0.1.0",
"figlet": "^1.1.2",
"knox": "^0.9.2",
"milieu": "^1.7.1",
"mongoose": "^4.5.5",
"mongoose-count-and-find": "^1.0.0",
"mongoose-cu-timestamps": "^1.0.0",
"mongoose-document-slugs": "^1.1.1",
"on-finished": "^2.3.0",
"pretty-ms": "^2.1.0",
"request": "^2.58.0",
"winston": "^2.3.1",
"winston-child-logger": "0.0.1",
"winston-sentry-transport": "1.0.0"
},
"devDependencies": {
"assert-contains": "0.0.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.4",
"methods": "^1.1.2",
"mocha": "^3.0.2",
"mongodb": "^2.2.4",
"nock": "^9.0.4",
"nodemon": "^1.10.0",
"nomad-cli": "^1.0.0",
"pre-commit": "^1.1.3",
"sinon": "^2.1.0"
},
"pre-commit": [
"eslint"
],
"repository": {
"url": "https://github.com/FindEarth/api"
},
"license": "MIT",
"engines": {
"node": ">= 6"
}
}