-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "report-to",
"version": "1.1.0",
"description": "Report-To Middleware for Express",
"keywords": [
"connect",
"express",
"middleware",
"report-to",
"reportTo"
],
"homepage": "https://github.com/Cherry/report-to#readme",
"bugs": {
"url": "https://github.com/Cherry/report-to/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cherry/report-to.git"
},
"license": "MIT",
"author": "James Ross <james@jross.me> (https://jross.me)",
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types",
"index.js"
],
"scripts": {
"coverage": "nyc report --reporter=lcov",
"pretest": "eslint . --fix",
"test": "nyc mocha",
"test-ts": "ts-mocha -p ./tsconfig.json test/index.ts"
},
"devDependencies": {
"@nodecraft/eslint-config": "^43.1.0",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.8",
"@types/supertest": "^6.0.2",
"assert": "^2.1.0",
"connect": "^3.7.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"supertest": "^7.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=12.20.0"
}
}