-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.88 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
76
77
78
79
80
81
82
{
"name": "@xbyorange/mocks-server",
"version": "1.0.1",
"description": "Mocks server with extensible fixtures groupables in predefined behaviors. Behavior can be changed using CLI or REST API",
"keywords": [
"mocks",
"server",
"fixtures",
"behaviors",
"api",
"rest",
"cli",
"express",
"testing",
"development"
],
"author": "XByOrange",
"license": "Apache-2.0",
"repository": "https://github.com/XbyOrange/mocks-server",
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"lib",
"index.js"
],
"main": "index.js",
"bin": {
"mocks-server": "./bin/mocks-server"
},
"scripts": {
"lint": "eslint index.js lib test",
"lint-staged": "lint-staged",
"test": "jest",
"test-acceptance": "jest --config=jest.acceptance.config.js",
"test-ci": "npm run test && npm run test-acceptance",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"body-parser": "1.19.0",
"boom": "7.3.0",
"chalk": "^2.4.2",
"commander": "2.20.0",
"cors": "2.8.5",
"express": "4.17.1",
"express-request-id": "1.4.1",
"inquirer": "^6.3.1",
"inquirer-autocomplete-prompt": "^1.0.1",
"lodash": "4.17.11",
"node-watch": "0.6.2",
"require-all": "3.0.0",
"route-parser": "0.0.5",
"strip-ansi": "5.2.0",
"tree-kill-sync": "^1.0.0",
"winston": "3.2.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "5.16.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "2.3.0",
"jest": "24.8.0",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"sinon": "^7.2.3"
},
"lint-staged": {
"lib/**/*.js": "eslint",
"test/**/*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"engines": {
"node": ">8.0.0",
"npm": ">6.0.0"
}
}