-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.37 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
{
"name": "rollup-plugin-hoist-import-deps",
"version": "1.1.0",
"description": "Preload static imports of a chunk when it is dynamically imported",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "rimraf dist && rollup -c",
"test": "npm run build && ava",
"test:update-snapshots": "npm run build && ava --update-snapshots",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikerman/rollup-plugin-hoist-import-deps.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"rollup",
"plugin",
"rollup-plugins",
"preload",
"module"
],
"author": "Vikram Subramanian",
"license": "MIT",
"bugs": {
"url": "https://github.com/vikerman/rollup-plugin-hoist-import-deps/issues"
},
"homepage": "https://github.com/vikerman/rollup-plugin-hoist-import-deps#readme",
"devDependencies": {
"ava": "3.15.0",
"rimraf": "3.0.2",
"rollup": "2.23.1",
"semver": "7.3.5",
"standard-changelog": "2.0.27",
"yesno": "0.3.1"
},
"dependencies": {
"estree-walker": "^2.0.1",
"magic-string": "^0.25.7"
},
"ava": {
"files": [
"**/test/**",
"!**/fixtures/**",
"!**/output/**"
]
}
}