1 | {
|
---|
2 | "name": "webpack-subresource-integrity",
|
---|
3 | "version": "1.5.2",
|
---|
4 | "description": "Webpack plugin for enabling Subresource Integrity",
|
---|
5 | "engines": {
|
---|
6 | "node": ">=4"
|
---|
7 | },
|
---|
8 | "main": "index",
|
---|
9 | "scripts": {
|
---|
10 | "codeclimate": "docker run --interactive --tty --rm --env CODECLIMATE_CODE=\"$PWD\" --volume \"$PWD\":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate",
|
---|
11 | "coverage": "nyc $(npm bin)/mocha --exit --timeout 20000",
|
---|
12 | "karma": "karma start --single-run",
|
---|
13 | "test": "mocha --exit --timeout 20000",
|
---|
14 | "lint": "eslint .",
|
---|
15 | "prettier": "prettier --write '**/*.js'"
|
---|
16 | },
|
---|
17 | "repository": {
|
---|
18 | "type": "git",
|
---|
19 | "url": "https://github.com/waysact/webpack-subresource-integrity.git"
|
---|
20 | },
|
---|
21 | "keywords": [
|
---|
22 | "webpack",
|
---|
23 | "plugin",
|
---|
24 | "sri",
|
---|
25 | "subresource",
|
---|
26 | "integrity",
|
---|
27 | "html-webpack-plugin"
|
---|
28 | ],
|
---|
29 | "author": "Julian Scheid <julian@waysact.com>",
|
---|
30 | "license": "MIT",
|
---|
31 | "bugs": {
|
---|
32 | "url": "https://github.com/waysact/webpack-subresource-integrity/issues"
|
---|
33 | },
|
---|
34 | "homepage": "https://github.com/waysact/webpack-subresource-integrity#readme",
|
---|
35 | "devDependencies": {
|
---|
36 | "add-asset-html-webpack-plugin": "^3.0.1",
|
---|
37 | "babel-eslint": "^8.2.1",
|
---|
38 | "before-build-webpack": "^0.2.3",
|
---|
39 | "bluebird": "^3.5.1",
|
---|
40 | "check-node-version": "^3.2.0",
|
---|
41 | "connect": "^3.6.6",
|
---|
42 | "coveralls": "3.0.7",
|
---|
43 | "css-loader": "^0.28.0",
|
---|
44 | "eslint": "^4.18.0",
|
---|
45 | "eslint-config-airbnb-base": "^12.1.0",
|
---|
46 | "eslint-config-prettier": "^2.9.0",
|
---|
47 | "eslint-plugin-import": "^2.2.0",
|
---|
48 | "expect": "^21.0.0",
|
---|
49 | "extract-text-webpack-plugin": "^1.0.1",
|
---|
50 | "file-loader": "^1.1.0",
|
---|
51 | "get-port": "^3.2.0",
|
---|
52 | "glob": "^7.1.1",
|
---|
53 | "html-webpack-externals-plugin": "^3.8.0",
|
---|
54 | "html-webpack-plugin": "^2.21.0",
|
---|
55 | "htmlparser": "^1.7.7",
|
---|
56 | "http-shutdown": "^1.2.0",
|
---|
57 | "karma": "^1.3.0",
|
---|
58 | "karma-chrome-launcher": "^2.0.0",
|
---|
59 | "karma-firefox-launcher": "1.1.0",
|
---|
60 | "karma-mocha": "^1.0.1",
|
---|
61 | "karma-webpack": "2.0.7",
|
---|
62 | "lodash": "^4.17.5",
|
---|
63 | "mini-css-extract-plugin": "^0.2.0",
|
---|
64 | "mocha": "^5.0.1",
|
---|
65 | "module-alias": "^2.0.6",
|
---|
66 | "nyc": "^11.0.0",
|
---|
67 | "prettier": "^1.10.2",
|
---|
68 | "puppeteer": "^1.1.0",
|
---|
69 | "rimraf": "^2.6.2",
|
---|
70 | "serve-static": "^1.13.2",
|
---|
71 | "soupselect": "^0.2.0",
|
---|
72 | "style-loader": "^0.18.0",
|
---|
73 | "tmp": "^0.0.31",
|
---|
74 | "webpack": "^1.12.11",
|
---|
75 | "webpack-assets-manifest": "^3.0.0",
|
---|
76 | "webpack-fix-style-only-entries": "^0.4.0"
|
---|
77 | },
|
---|
78 | "peerDependencies": {
|
---|
79 | "html-webpack-plugin": ">= 2.21.0 < 5",
|
---|
80 | "webpack": ">= 1.12.11 < 6"
|
---|
81 | },
|
---|
82 | "peerDependenciesMeta": {
|
---|
83 | "html-webpack-plugin": {
|
---|
84 | "optional": true
|
---|
85 | }
|
---|
86 | },
|
---|
87 | "files": [
|
---|
88 | "LICENSE",
|
---|
89 | "README.md",
|
---|
90 | "CHANGELOG.md",
|
---|
91 | "index.js",
|
---|
92 | "util.js",
|
---|
93 | "jmtp.js"
|
---|
94 | ],
|
---|
95 | "nyc": {
|
---|
96 | "exclude": [
|
---|
97 | "coverage/**",
|
---|
98 | "test/**",
|
---|
99 | "examples/**",
|
---|
100 | "**/node_modules/**"
|
---|
101 | ]
|
---|
102 | },
|
---|
103 | "prettier": {
|
---|
104 | "singleQuote": true
|
---|
105 | },
|
---|
106 | "dependencies": {
|
---|
107 | "webpack-sources": "^1.3.0"
|
---|
108 | }
|
---|
109 | }
|
---|