-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
99 lines (99 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "prerender-loader",
"version": "1.3.0",
"description": "Painless universal prerendering for Webpack. Works great with html-webpack-plugin.",
"main": "dist/prerender-loader.js",
"source": "src/index.js",
"license": "Apache-2.0",
"author": "The Chromium Authors",
"contributors": [
{
"name": "Jason Miller",
"email": "developit@google.com"
}
],
"keywords": [
"pre-render",
"prerendering",
"webpack plugin",
"SSR",
"performance",
"first contentful paint",
"FCP"
],
"repository": "GoogleChromeLabs/prerender-loader",
"scripts": {
"build": "microbundle -f cjs --no-compress --external all",
"docs": "documentation readme -q --no-markdown-toc -a public -s Usage --sort-order alpha src",
"test": "jest --coverage",
"prepare": "npm run -s build",
"release": "npm run build -s && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"babel": {
"presets": [
"env"
]
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"text"
],
"collectCoverageFrom": [
"src/**/*"
],
"watchPathIgnorePatterns": [
"node_modules",
"dist"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.0",
"babel-preset-env": "^1.7.0",
"documentation": "^7.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.0.0",
"memory-fs": "^0.4.1",
"microbundle": "^0.4.4",
"raw-loader": "^0.5.1",
"webpack": "^4.8.3"
},
"dependencies": {
"jsdom": "^11.11.0",
"loader-utils": "^1.1.0"
},
"peerDependencies": {
"webpack": "*",
"memory-fs": "*"
},
"eslintConfig": {
"extends": [
"standard",
"plugin:jest/recommended"
],
"env": {
"browser": false,
"node": true
},
"rules": {
"indent": [
2,
2
],
"semi": [
2,
"always"
],
"prefer-const": 1
}
}
}