-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.05 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
{
"private": false,
"name": "@netlify/plugin-csp-nonce",
"version": "1.3.6",
"description": "Use a nonce for the script-src and style-src directives of your Content Security Policy.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/netlify/plugin-csp-nonce.git"
},
"author": "Jason Barry <[email protected]>",
"license": "MIT",
"type": "module",
"files": [
"index.js",
"manifest.yml",
"src/*"
],
"devDependencies": {
"@types/node": "^22.9.0",
"cheerio": "^1.0.0",
"content-security-policy-parser": "^0.6.0",
"execa": "^9.5.1",
"get-port": "^7.1.0",
"prettier": "^2.8.8",
"strip-ansi": "^7.1.0",
"typescript": "^5.2.2",
"vitest": "^2.1.4"
},
"bugs": {
"url": "https://github.com/netlify/plugin-csp-nonce/issues"
},
"homepage": "https://github.com/netlify/plugin-csp-nonce#readme",
"scripts": {
"build": "tsc src/*.ts --noEmit --strict --lib es2018,dom",
"test": "vitest"
},
"dependencies": {
"@netlify/build-info": "^7.15.2"
}
}