-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 KB
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
{
"name": "html-webpack-jsdom-prerender-plugin",
"version": "1.0.2",
"description": "Webpack plugin to prerender JS apps in a JSDOM context",
"repository": "https://github.com/associatedpress/html-webpack-jsdom-prerender-plugin",
"author": "Andrew Milligan",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"release": "echo 'Successfully released package!'",
"prerelease": "yarn version",
"postversion": "yarn build && yarn publish --new-version $npm_package_version && git push --follow-tags",
"prebuild": "rm -rf ./dist/*",
"build": "rollup -c"
},
"dependencies": {
"chalk": "^3.0.0",
"jsdom": "^19.0.0",
"schema-utils": "^4.0.0"
},
"peerDependencies": {
"html-webpack-plugin": "*"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.70.1",
"rollup-plugin-auto-external": "^2.0.0"
}
}