-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.61 KB
/
package.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "slotmachine",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"lint": "eslint -o eslint.html -f html .",
"start": "node index.js",
"test": "MONGO_DB_URI=mongodb://localhost:27017/slotmachine-test jest --forceExit",
"test:unit": "jest unit --coverage",
"test:integration": "jest int --forceExit",
"test:devint": "MONGO_DB_URI=mongodb://localhost:27017/slotmachine-test jest int --forceExit"
},
"engines": {
"node": ">=6"
},
"author": " <>",
"dependencies": {
"axios": "^0.17.1",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"helmet": "^3.1.0",
"jenkins": "^0.20.1",
"jenkins-api": "^0.3.1",
"moment": "^2.20.1",
"mongoose": "^4.7.0",
"morgan": "^1.7.0",
"request-promise": "^4.2.2",
"valid-url": "^1.0.9",
"xml2js": "^0.4.19"
},
"devDependencies": {
"axios-mock-adapter": "^1.10.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"jest": "^21.2.1",
"jest-junit": "^3.3.0",
"jest-mock-axios": "^1.0.21",
"mockingoose": "^2.4.0",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
},
"jest": {
"testResultsProcessor": "./node_modules/jest-junit",
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/coverage/**",
"!lib/controller.js",
"!lib/facade.js",
"!index.js",
"!routes.js",
"!config.js"
]
}
}