-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
73 lines (73 loc) · 1.81 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
{
"name": "simulado",
"version": "3.5.2",
"description": "A simple nodejs mockserver",
"main": "src/index.js",
"bin": {
"simulado": "bin/simulado"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/ldabiralai/simulado.git"
},
"keywords": [
"mock",
"mockserver",
"http"
],
"scripts": {
"start": "./bin/simulado",
"watch": "nodemon -e js,html ./bin/simulado",
"test": "mocha --compilers js:@babel/register --require test.setup.js --recursive './src/**/*.test.js'",
"compile": "babel src --out-dir lib",
"format": "prettier --write '**/*.{js,json,md}' && prettier --write --parser babylon bin/simulado",
"format:check": "prettier-check '**/*.{js,json,md}' && prettier-check --parser babylon bin/simulado"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"bin/simulado": [
"prettier --write --parser babylon",
"git add"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"chai": "^4.2.0",
"glob": "^7.1.6",
"husky": "^1.3.1",
"lint-staged": "^9.5.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.4",
"portscanner": "^2.2.0",
"prettier": "^1.19.1",
"prettier-check": "^2.0.0",
"pretty-quick": "^1.11.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.4.0",
"supertest": "^3.4.2"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"commander": "^2.20.3",
"cors": "^2.8.5",
"deep-equal": "^1.1.1",
"ejs": "^2.7.4",
"express": "^4.17.1",
"lodash.merge": "^4.6.2",
"query-string": "^6.9.0",
"spdy": "^3.4.7"
}
}