This repository has been archived by the owner on Apr 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 634
/
package.json
73 lines (73 loc) · 1.81 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
67
68
69
70
71
72
73
{
"name": "prerender-spa-plugin",
"version": "3.4.0",
"description": "Flexible, framework-agnostic static site generation for sites and SPAs built with webpack.",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "babel es6 --out-dir es5-autogenerated",
"prepublishOnly": "npm run build"
},
"files": [
"es6/*",
"es5-autogenerated/*"
],
"keywords": [
"prerender",
"spa",
"ssr",
"serverside-rendering"
],
"author": {
"name": "Chris Fritz",
"email": "[email protected]",
"url": "https://twitter.com/chrisvfritz"
},
"contributors": [
{
"name": "Chris Fritz",
"email": "[email protected]",
"url": "https://twitter.com/chrisvfritz"
},
{
"name": "Drew Lustro",
"url": "https://drewlustro.com/"
},
{
"name": "Joshua Bemenderfer",
"email": "[email protected]",
"url": "https://joshderf.com/"
},
{
"name": "qkdreyer",
"email": "[email protected]"
}
],
"repository": "chrisvfritz/prerender-spa-plugin",
"bugs": {
"url": "https://github.com/chrisvfritz/prerender-spa-plugin/issues",
"email": "[email protected]"
},
"dependencies": {
"@prerenderer/prerenderer": "^0.7.2",
"@prerenderer/renderer-puppeteer": "^0.2.0",
"html-minifier": "^3.5.16"
},
"devDependencies": {
"ava": "^3.9.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.3"
},
"engines": {
"node": ">=4.0.0"
}
}