-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
66 lines (66 loc) · 1.67 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
66
{
"name": "extract-loader",
"version": "3.2.0",
"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",
"posttest": "eslint src test",
"release": "standard-version",
"prepublishOnly": "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": "^5.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-register": "^6.26.0",
"chai": "^4.1.0",
"chai-fs": "^2.0.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-peerigon": "^15.0.2",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"rimraf": "^2.6.2",
"standard-version": "^4.4.0",
"style-loader": "^0.23.0",
"webpack": "^4.17.1",
"webpack-command": "^0.4.1"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"btoa": "^1.2.1",
"loader-utils": "^1.1.0",
"resolve": "^1.8.1"
},
"files": [
"lib"
]
}