-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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
{
"name": "express-inspector",
"version": "0.3.1",
"description": "Get a better understanding of your express app",
"author": "Yacine Hmito <[email protected]>",
"license": "MIT",
"main": "index.js",
"bin": {
"express-inspector": "bin/express-inspector"
},
"files": [
"bin/express-inspector",
"index.js",
"cli.js",
"src"
],
"dependencies": {
"pad-end": "^1.0.2",
"stack-trace": "^0.0.10",
"yargs": "^10.1.1"
},
"peerDependencies": {
"express": "^4.16.2"
},
"devDependencies": {
"@types/yargs": "^10.0.1",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-prettier": "^2.4.0",
"express": "^4.16.2",
"jest": "^22.0.4",
"prettier": "^1.9.2"
},
"engines": {
"yarn": "^1.3.2",
"node": ">= 6.4.0"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint .",
"prettify": "eslint --fix .",
"run-example": "node bin/run-example"
},
"jest": {
"testPathIgnorePatterns": [
"_[^/]*\\.js"
]
}
}