-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "metadata",
"version": "0.0.0",
"main": "src",
"private": true,
"scripts": {
"start": "node .",
"test": "jest",
"test:unit": "npm test \"src/**/!(index).test.js\"",
"test:integration": "npm test \"src/**/index.test.js\"",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"dev": "nodemon -i \"*.test.js\" .",
"prod": "cross-env NODE_ENV=production nodemon -i \"*.test.js\" -r dotenv-safe/config .",
"lint": "eslint src",
"docs": "apidoc -i src -o docs && apidoc-markdown -p docs -o DOCS.md",
"postdocs": "opn docs/index.html"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js"
},
"devDependencies": {
"apidoc": "^0.16.1",
"apidoc-markdown": "^0.2.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^18.0.0",
"cross-env": "^3.1.3",
"dotenv-safe": "^4.0.3",
"eslint": "^3.3.1",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"jest-cli": "^18.1.0",
"mockgoose": "^6.0.8",
"nock": "^9.0.2",
"nodemon": "^1.10.2",
"opn-cli": "^3.1.0",
"sinon": "^1.17.5",
"supertest": "^2.0.0",
"supertest-as-promised": "^4.0.0"
},
"dependencies": {
"babel-core": "^6.17.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.16.0",
"babel-runtime": "^6.11.6",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"bodymen": "^1.0.1",
"compression": "^1.6.2",
"cors": "^2.7.1",
"express": "^4.13.4",
"lodash": "^4.13.1",
"mongoose": "^4.4.19",
"mongoose-create-unique": "^0.4.1",
"mongoose-keywords": "^0.3.1",
"morgan": "^1.7.0",
"querymen": "^2.0.0",
"request": "^2.74.0",
"request-promise": "^4.1.1" }
}