-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "inline-source-webpack-plugin",
"version": "3.0.1",
"description": "A inline-source plugin for webpack",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest --runInBand",
"build:demo": "webpack --config ./demo/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KyLeoHC/inline-source-webpack-plugin.git"
},
"keywords": [
"webpack",
"inline",
"source",
"css",
"js",
"plugin"
],
"author": "KyLeo",
"license": "MIT",
"bugs": {
"url": "https://github.com/KyLeoHC/inline-source-webpack-plugin/issues"
},
"homepage": "https://github.com/KyLeoHC/inline-source-webpack-plugin#readme",
"devDependencies": {
"html-webpack-plugin": "^5.3.1",
"jest": "^29.2.1",
"rimraf": "^2.6.3",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"htmlparser2": "^8.0.1",
"inline-source": "^8.0.2"
},
"engines": {
"node": ">=16.0.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.spec.js"
],
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/test",
"<rootDir>/node_modules"
]
}
}