-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
54 lines (54 loc) · 1.74 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
{
"name": "csp-html-webpack-plugin",
"version": "5.1.0",
"description": "A plugin which, when combined with HTMLWebpackPlugin, adds CSP tags to the HTML output",
"main": "plugin.js",
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"jest": "jest --config=./jest.config.js plugin.jest.js",
"jest:watch": "jest --watch --verbose=false --config=./jest.config.js plugin.jest.js",
"jest:coverage:generate": "jest --coverage --config=./jest.config.js plugin.jest.js",
"jest:coverage:clean": "rm -rf ./coverage",
"jest:coverage:upload": "npx codecov",
"jest:coverage": "npm run jest:coverage:clean && npm run jest:coverage:generate && npm run jest:coverage:upload",
"test": "npm run eslint && npm run jest && npm run jest:coverage"
},
"homepage": "https://github.com/slackhq/csp-html-webpack-plugin",
"bugs": "https://github.com/slackhq/csp-html-webpack-plugin/issues",
"repository": {
"type": "git",
"url": "[email protected]:slackhq/csp-html-webpack-plugin.git"
},
"keywords": [
"webpack",
"csp",
"plugin",
"html"
],
"author": "Anuj Nair",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"lodash": "^4.17.20"
},
"peerDependencies": {
"webpack": "^4 || ^5",
"html-webpack-plugin": "^4 || ^5"
},
"devDependencies": {
"babel-jest": "^26.6.3",
"codecov": "^3.8.1",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"html-webpack-plugin": "^5.0.0-alpha.15",
"jest": "^26.6.3",
"memory-fs": "^0.5.0",
"prettier": "^2.2.1",
"webpack": "^5.10.1",
"webpack-sources": "^2.2.0"
}
}