-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
65 lines (65 loc) · 2.28 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
61
62
63
64
65
{
"name": "style-ext-html-webpack-plugin",
"version": "4.1.3",
"description": "Enhances html-webpack-plugin functionality by enabling inline styles.",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"scripts": {
"pretest": "semistandard & install-module-versions dynavers.json",
"test": "npm run test:webpack3 && npm run test:webpack4 && npm run test:webpack4extractTextPlugin4 && npm run test:webpack4htmlPlugin4",
"test:webpack3": "VERSION=webpack3 jasmine",
"test:webpack4": "VERSION=webpack4 jasmine",
"test:webpack4extractTextPlugin4": "VERSION=webpack4extractTextPlugin4 jasmine",
"test:webpack4htmlPlugin4": "VERSION=webpack4htmlPlugin4 jasmine",
"test:core": "VERSION=webpack4htmlPlugin4 jasmine ./spec/core-spec.js",
"test:css-reg-exp": "VERSION=webpack4 jasmine ./spec/css-reg-exp-spec.js",
"test:set-position-spec": "VERSION=webpack4 jasmine ./spec/set-position-spec.js",
"node-debug": "DEBUG=StyleExt VERSION=webpack4htmlPlugin4 node --inspect ./node_modules/jasmine/bin/jasmine.js ./spec/core-spec.js",
"debug": "DEBUG=StyleExt VERSION=webpack4 jasmine ./spec/set-position-spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/numical/style-ext-html-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"extract-text-webpack-plugin",
"inline styles",
"internal styles",
"style"
],
"author": "Mike Evans <[email protected]> (https://github.com/numical)",
"license": "MIT",
"bugs": {
"url": "https://github.com/numical/style-ext-html-webpack-plugin/issues"
},
"homepage": "https://github.com/numical/style-ext-html-webpack-plugin",
"devDependencies": {
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"denodeify": "^1.2.1",
"dynavers": "^0.3.1",
"file-loader": "^4.0.0",
"fs-temp": "^1.2.1",
"jasmine": "^3.6.2",
"jasmine-spec-reporter": "^6.0.0",
"jasmine2-custom-message": "^0.9.3",
"ncp": "^2.0.0",
"postcss-loader": "^4.0.4",
"postcss-spiffing": "0.1.0",
"rimraf": "^3.0.2",
"script-ext-html-webpack-plugin": "^2.1.5",
"semistandard": "^14.2.3",
"style-loader": "^0.23.1",
"url-loader": "^4.1.1"
},
"dependencies": {
"clean-css": "^4.2.3",
"debug": "^4.2.0"
}
}