-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "kevin-middleware",
"version": "1.7.2",
"description": "This is an Express middleware that makes developing javascript in a monorepo easier.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint": "eslint --cache .",
"test": "jest",
"try": "npm run lint && npm run test",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "https://github.com/etsy/kevin-middleware"
},
"author": "Salem Hilal ([email protected])",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"jest": {
"automock": false,
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/lib/**/*.js"
],
"testEnvironment": "node",
"roots": [
"<rootDir>/test"
],
"verbose": true
},
"peerDependencies": {
"webpack": "5.x"
}
}