-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
{
"name": "@localnerve/csp-hashes",
"version": "5.0.7",
"description": "Flexible library to generate CSP hashes",
"main": "index.js",
"type": "module",
"exports": {
"import": "./index.js",
"default": "./index.js"
},
"scripts": {
"lint": "eslint .",
"pretest": "node -e 'try{require(\"fs\").symlinkSync(\"../lib\", \"./__tests__/lib\");}catch(e){}'",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"eslint": "^9.18.0",
"@eslint/js": "^9.18.0",
"globals": "^15.14.0",
"eslint-plugin-jest": "28.11.0",
"jest": "^29.7.0",
"vinyl": "^3.0.0"
},
"dependencies": {
"cheerio": "^1.0.0"
},
"overrides": {
"undici": "^6.21.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/localnerve/csp-hashes.git"
},
"keywords": [
"CSP",
"hashes",
"gulp"
],
"author": {
"name": "Alex Grant",
"email": "alex@localnerve.com",
"url": "https://localnerve.com"
},
"contributors": [
{
"name": "Alex Grant",
"email": "alex@localnerve.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/localnerve/csp-hashes/issues"
},
"homepage": "https://github.com/localnerve/csp-hashes#readme",
"engines": {
"node": ">=18.17"
}
}