-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 KB
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
{
"name": "express-utils",
"version": "1.2.0",
"description": "Utility belt for express applications",
"main": "index.js",
"types": "types",
"scripts": {
"lint": "eslint ./ --fix",
"postlint": "dtslint types",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"fmt": "prettier --write './**/*.js'",
"precommit": "lint-staged",
"prepush": "npm test"
},
"engines": {
"node": ">= 6.10.x <= 8.9.x"
},
"author": "Maxim Malov <mmalov@hwdtech.ru>",
"license": "MIT",
"dependencies": {
"bunyan": "^1.8.8",
"bunyan-debug-stream": "^1.0.8",
"nconf": "0.10.0",
"nconf-yaml": "1.0.2"
},
"devDependencies": {
"dtslint": "0.2.0",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-prettier": "2.4.0",
"husky": "^0.14.3",
"jest-cli": "22.0.4",
"lint-staged": "6.0.0",
"prettier": "^1.5.3"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
]
}
}