-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
71 lines (71 loc) · 1.65 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
{
"name": "volleyball",
"version": "1.5.1",
"description": "🏐 Tiny HTTP logger for Express showing asynchronous requests and responses",
"engines": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/glebec/volleyball",
"main": "lib/volleyball.js",
"files": [
"lib"
],
"scripts": {
"precommit": "./scripts/precommit && lint-staged",
"postcommit": "./scripts/postcommit",
"prettify": "prettier --write \"**/*.{js,jsx,json,css,scss,md}\"",
"test": "npm run build && DEBUG=http,custom mocha",
"lint": "eslint **/*.js --ignore-path .gitignore --ignore-pattern lib",
"build": "babel src -d lib"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix --ignore-pattern lib",
"git add"
],
"*.{css,scss,json,md}": [
"prettier --write",
"git add"
]
},
"author": "Gabriel Lebec <[email protected]> (https://github.com/glebec)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^8.2.3",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-fullstack": "^5.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.3",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"mocha": "^5.1.1",
"strip-ansi": "^4.0.0",
"supertest": "^3.0.0"
},
"dependencies": {
"chalk": "^3.0.0",
"debug": "^3.1.0",
"filesize": "^3.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/glebec/volleyball.git"
},
"bugs": "https://github.com/glebec/volleyball/issues",
"keywords": [
"HTTP",
"logging",
"logger",
"log",
"middleware",
"async",
"req",
"res"
]
}