-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 2.21 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
{
"webpackConfigJaid": "nodeClass",
"version": "1.3.0",
"author": "Jaid <[email protected]> (https://github.com/Jaid)",
"peerDependencies": {
"html-webpack-plugin": "^5.3.1"
},
"dependencies": {
"debug": "^4.3.1",
"insert-string-after": "^1.0.0",
"insert-string-before": "^1.0.0"
},
"devDependencies": {
"babel-jest": "^27.0.2",
"babel-preset-jaid": "^13.1.0",
"browserslist-config-jaid-node": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.29.0",
"eslint-config-jaid": "^1.55.0",
"jest": "^27.0.4",
"load-json-file": "^6.2.0",
"pify": "^5.0.0",
"rimraf": "^3.0.2",
"webpack": "^5.39.1",
"webpack-config-jaid": "^14.0.1"
},
"scripts": {
"clean": "rimraf dist/",
"babel:prod": "rimraf dist/transpiled/production && NODE_ENV=production babel --out-dir dist/transpiled/production --source-maps true src",
"babel:dev": "rimraf dist/transpiled/development && NODE_ENV=development babel --out-dir dist/transpiled/development src",
"babel:test": "rimraf dist/transpiled/test && NODE_ENV=test babel --out-dir dist/transpiled/test src",
"build:prod": "NODE_ENV=production webpack",
"build:dev": "NODE_ENV=development webpack",
"test": "npm run build:prod && NODE_ENV=development MAIN=dist/package/production jest --runInBand --detectOpenHandles",
"test:coverage": "npm run test:dev -- --coverage --json --outputFile=dist/jest/stats.json",
"test:debug": "DEBUG=\"$(basename $PWD),$(basename $PWD):*\" NODE_ENV=test node --inspect=9229 node_modules/jest/bin/jest.js --runInBand",
"prepareActionJest": "npm run build:prod"
},
"name": "inject-body-webpack-plugin",
"description": "Webpack plugin that injects a custom string into the body of the html-webpack-plugin output.",
"funding": "https://github.com/sponsors/jaid",
"repository": {
"type": "git",
"url": "https://github.com/jaid/inject-body-webpack-plugin"
},
"homepage": "https://github.com/Jaid/inject-body-webpack-plugin",
"keywords": [
"add-on",
"addon",
"html",
"html-webpack-plugin",
"html-webpack-plugin-plugin",
"library",
"node",
"node-js",
"plugin",
"webpack",
"webpack-plugin"
],
"type": "module"
}