forked from peerigon/extract-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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": "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": "^7.23.4",
"babel-plugin-istanbul": "^6.1.1",
"@babel/plugin-transform-runtime": "^7.23.6",
"@babel/register": "^7.22.15",
"chai": "^4.3.10",
"chai-fs": "^2.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.55.0",
"eslint-config-peerigon": "^37.0.2",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"standard-version": "^9.5.0",
"style-loader": "^3.3.3",
"webpack": "^5.89.0"
},
"dependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/runtime": "^7.23.6",
"babel-plugin-add-module-exports": "^1.0.4",
"btoa": "^1.2.1",
"loader-utils": "^3.2.1",
"resolve": "^1.22.8"
},
"files": [
"lib"
]
}