-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "reporting-api",
"version": "1.0.3",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && node --test dist/*.test.js",
"build": "rollup -c rollup.config.js",
"format": "prettier --write ./src"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/wille/reporting-api.git"
},
"author": "wille",
"license": "MIT",
"description": "Roll your own Reporting API collector. Supports CSP, COEP, COOP, Document-Policy, Crash reports, Deprecation reports, Intervention reports and Network Error Logging ",
"peerDependencies": {
"debug": "^4",
"express": ">= 4.16.0",
"zod": "^3.23"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/node": "^20.14.10",
"node-mocks-http": "^1.15.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"typescript": "^5.5.4"
},
"dependencies": {
"tslib": "^2.8.0"
},
"keywords": [
"express",
"reporting",
"content-security-policy",
"webappsec",
"csp"
]
}