-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.24 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
{
"name": "@phil-r/stats",
"version": "1.4.4",
"license": "MIT",
"author": "Phil Rukin <philipp@rukin.me> (https://rukin.me)",
"description": "Request statistics middleware",
"main": "index.js",
"keywords": [
"middleware",
"statistics",
"stats",
"express",
"http",
"requests",
"counter",
"koa",
"rayo",
"polka",
"fastify"
],
"bugs": {
"url": "https://github.com/phil-r/stats/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phil-r/stats.git"
},
"homepage": "https://github.com/phil-r/stats#readme",
"scripts": {
"test": "npm run lint && npm run ava",
"ava": "nyc --reporter=lcov --reporter=text ava",
"lint": "eslint --ignore-path .gitignore **/*.js",
"prepare": "husky install"
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"on-headers": "^1.0.1",
"pretty-time": "^1.1.0",
"regexparam": "^2.0.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"ava": "^3.8.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^6.0.0",
"nyc": "^15.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.0.1",
"supertest": "^6.0.0"
}
}