-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 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
{
"name": "@staticdeploy/mock-server",
"description": "Easy to use, no frills mock server",
"version": "3.0.0",
"publishConfig": {
"access": "public"
},
"main": "src/index.js",
"bin": {
"mock-server": "src/bin/index.js"
},
"files": [
"src",
"docs",
"ssl"
],
"author": "Paolo Scanferla <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/staticdeploy/mock-server.git"
},
"bugs": {
"url": "https://github.com/staticdeploy/mock-server/issues"
},
"keywords": [
"mock",
"server",
"api"
],
"scripts": {
"start": "./src/bin/index.js",
"test": "env NODE_PATH=src mocha --exit --recursive test",
"coverage": "env NODE_ENV=test nyc --reporter=text --reporter=lcov npm run test",
"prettier": "prettier '@(src|test|docs|examples)/**/*.@(js|md)'",
"prettify": "yarn prettier --write",
"lint:prettier": "yarn prettier --list-different",
"lint:eslint": "eslint src test",
"lint": "yarn lint:prettier && yarn lint:eslint",
"prepare": "husky install"
},
"dependencies": {
"@staticdeploy/app-config": "^2.0.2",
"ajv": "^8.11.0",
"body-parser": "^1.20.0",
"chalk": "^4.1.2",
"connect-slow": "^0.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"decache": "^4.6.1",
"del": "^6.1.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-mung": "^0.5.1",
"fancy-log": "^2.0.0",
"fs-readdir-recursive": "^1.1.0",
"lodash": "^4.17.21",
"methods": "^1.1.2",
"node-watch": "^0.7.3",
"selfsigned": "^2.0.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"chai": "^4.3.6",
"create-fs-tree": "^1.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"supertest": "^4.0.2"
}
}