-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.22 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
83
84
85
86
{
"name": "@easynvest/mock-server",
"version": "0.6.0",
"description": "",
"main": "index.js",
"license": "Apache-2.0",
"preferGlobal": true,
"publishConfig": {
"access": "public"
},
"scripts": {
"codecov": "codecov",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"coverage": "npm run test -- --no-cache --coverage",
"init": "node bin/cli.js init",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"posttest": "rimraf mock-server",
"prepush": "npm run lint",
"pretest": "make-dir mock-server && touch mock-server/db.json",
"start": "node bin/cli.js start",
"test:watch": "npm run test -- --watch",
"test": "jest"
},
"bin": {
"mock-server": "./bin/cli.js"
},
"keywords": [
"mock-api"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"*/**/*.js",
"!**/coverage/**",
"!**/(*.spec).js"
]
},
"homepage": "https://github.com/easynvest/mock-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/easynvest/mock-server.git"
},
"author": "Guilherme Mangabeira Gregio <[email protected]>",
"bugs": {
"url": "https://github.com/easynvest/mock-server/issues"
},
"dependencies": {
"body-parser": "~1.18.2",
"chalk": "^2.4.1",
"commander": "^2.12.2",
"cookie-parser": "~1.4.3",
"crocks": "^0.9.4",
"debug": "~2.6.9",
"express": "^4.16.3",
"forever-monitor": "^1.7.1",
"form-data": "^2.3.1",
"fs-extra": "^5.0.0",
"inquirer": "^4.0.1",
"kill-port": "^1.3.1",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"morgan": "~1.9.0",
"node-fetch": "^1.7.3",
"serve-favicon": "~2.4.5",
"touch": "^3.1.0",
"url": "^0.11.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"all-contributors-cli": "^5.3.0",
"codecov": "^3.0.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"husky": "^0.14.3",
"jest": "^23.3.0",
"make-dir-cli": "^1.0.0",
"node-mocks-http": "^1.7.0",
"rimraf": "^2.6.2",
"supertest": "^3.1.0"
}
}