-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 994 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 994 Bytes
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
{
"name": "rollup-plugin-modulepreload",
"version": "2.0.0",
"description": "Rollup plugin to add modulepreload links from generated chunks.",
"main": "index.js",
"scripts": {
"test": "tape -r esm test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bennypowers/rollup-plugin-modulepreload.git"
},
"keywords": [
"rollup",
"code splitting",
"performance"
],
"eslint": {
"env": {
"node": true
}
},
"author": "Benny Powers <web@bennypowers.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bennypowers/rollup-plugin-modulepreload/issues"
},
"homepage": "https://github.com/bennypowers/rollup-plugin-modulepreload#readme",
"dependencies": {
"crocks": "^0.12.4",
"fs.promises": "^0.1.2",
"jsdom": "^16.4.0",
"rollup-pluginutils": "^2.4.1"
},
"devDependencies": {
"esm": "^3.2.25",
"mock-fs": "^4.13.0",
"rollup": "^2.33.1",
"tape": "^5.0.1"
}
}