-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
50 lines (50 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
{
"name": "html-webpack-inline-source-plugin",
"version": "1.0.0-beta.2",
"description": "Embed javascript and css source inline when using the webpack dev server or middleware",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"prepublish": "npm run test",
"pretest": "semistandard",
"test": "jasmine",
"debug": "node-debug jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/dustinjackson/html-webpack-inline-source-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"inline",
"source"
],
"author": "Dustin Jackson <dustin.jackson@live.com> (https://github.com/DustinJackson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dustinjackson/html-webpack-inline-source-plugin/issues"
},
"homepage": "https://github.com/dustinjackson/html-webpack-inline-source-plugin",
"devDependencies": {
"cheerio": "^0.22.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^4.0.0-beta.4",
"jasmine": "^2.4.1",
"rimraf": "^2.5.2",
"semistandard": "^7.0.5",
"style-loader": "^0.13.1",
"webpack": "^4.20.2"
},
"dependencies": {
"escape-string-regexp": "^1.0.5",
"slash": "^1.0.0",
"source-map-url": "^0.4.0"
}
}