-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "babel-plugin-dynamic-import-split-require",
"description": "babel plugin to compile `import()` syntax to `split-require`, the commonjs bundle splitting library",
"version": "2.0.0",
"author": "Renée Kooi <[email protected]>",
"bugs": {
"url": "https://github.com/goto-bus-stop/babel-plugin-dynamic-import-split-require/issues"
},
"dependencies": {
"babel-plugin-syntax-dynamic-import": "^6.18.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"dedent": "^0.7.0",
"standard": "^14.3.1",
"tape": "^5.0.0"
},
"homepage": "https://github.com/goto-bus-stop/babel-plugin-dynamic-import-split-require",
"keywords": [
"babel",
"browserify",
"bundle",
"dynamic",
"import",
"plugin",
"split-require",
"splitting"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/goto-bus-stop/babel-plugin-dynamic-import-split-require.git"
},
"scripts": {
"test": "standard && tape test/*.js"
}
}