forked from peerigon/extract-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "@skpm/extract-loader",
"version": "2.0.3",
"description": "webpack loader to extract HTML and CSS from the bundle",
"main": "lib/extractLoader.js",
"scripts": {
"build": "babel src -d lib",
"test": "cross-env NODE_ENV=test nyc mocha -R spec",
"release": "standard-version",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerigon/extract-loader.git"
},
"keywords": [
"webpack",
"loader",
"extract",
"html",
"css"
],
"author": "peerigon <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/peerigon/extract-loader/issues"
},
"homepage": "https://github.com/peerigon/extract-loader#readme",
"engines": {
"node": ">= 6.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.0",
"chai-fs": "^2.0.0",
"cross-env": "^5.1.3",
"css-loader": "^0.28.8",
"file-loader": "^1.1.6",
"html-loader": "^0.5.0",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"standard-version": "^4.3.0",
"style-loader": "^0.19.1",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.0"
},
"dependencies": {
"loader-utils": "^1.1.0"
},
"files": [
"lib"
]
}