-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "mock-n-roll",
"version": "0.1.0",
"description": "configurable rest service system mock",
"main": "server.js --port NUMBER --baseUrl BASEURL",
"scripts": {
"lint:src": "eslint . --max-warnings 7",
"lint:test": "eslint test --ext .js --ignore-pattern coverage_report --max-warnings 1",
"nodemon": "nodemon server.js --port NUMBER --baseUrl BASEURL",
"prepush": "npm run lint:src && npm run lint:test",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxdome/mock-n-roll.git"
},
"keywords": [
"express",
"service",
"mock",
"rest",
"configurable"
],
"author": "maxdome GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/maxdome/mock-n-roll/issues"
},
"homepage": "https://github.com/maxdome/mock-n-roll#readme",
"dependencies": {
"body-parser": "1.15.2",
"connect-route": "0.1.5",
"cors": "2.8.1",
"express": "4.14.0",
"lodash": "4.17.2",
"vhost": "3.0.2"
},
"devDependencies": {
"eslint": "3.12.0",
"eslint-config-airbnb": "13.0.0",
"eslint-config-maxdome": "2.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.8.0",
"husky": "0.11.9",
"nodemon": "1.11.0"
}
}