-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.77 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "webup",
"version": "1.8.0",
"description": "yet another es6/html bundler",
"main": "dist/webup.js",
"files": [
"dist"
],
"repository": "https://github.com/VandeurenGlenn/webup.git",
"author": "Glenn Vandeuren <vandeurenglenn@gmail.com>",
"license": "MIT",
"dependencies": {
"backed": "^0.4.0",
"backed-logger": "^1.0.1",
"chalk": "^2.0.1",
"del": "^2.2.2",
"elegant-spinner": "^1.0.1",
"glob-stream": "^6.1.0",
"graceful-fs": "^4.1.11",
"is-image": "^2.0.0",
"is-text-path": "^1.0.1",
"log-update": "^2.0.0",
"mocha": "^3.4.1",
"multipipe": "^1.0.2",
"mz": "^2.6.0",
"polymer-bundler": "^2.0.3",
"rollup-pluginutils": "^2.0.1",
"source-map-support": "^0.4.15",
"sw-precache": "^5.2.0",
"underscore": "^1.8.3",
"vinyl": "^2.0.2",
"vinyl-read": "^1.0.0",
"webup-preset-bundle": "^1.1.2",
"webup-preset-default": "^1.1.1"
},
"scripts": {
"test": "mocha"
},
"backed": {
"bundles": [
{
"src": "src/index.js",
"dest": "dist/webup.js",
"format": "cjs",
"external": [
"acorn",
"rollup",
"gulp-babel",
"gulp-if",
"chalk",
"vinyl",
"underscore",
"mz/fs",
"multipipe",
"polymer-build",
"polymer-bundler",
"css-slam",
"gulp-html-minifier",
"path",
"del",
"vinyl-file",
"vinyl-read",
"fs",
"dom5",
"parse5"
],
"plugins": {
"json": {},
"commonjs": {
"include": "node_modules/**",
"exclude": "node_modules/babel/babel.js"
},
"babel": {
"runtimeHelpers": true,
"presets": [
[
"es2015",
{
"modules": false
}
]
],
"plugins": [
"transform-async-generator-functions",
"external-helpers",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
}
}
}
]
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"webup-plugin-external-images": "^1.0.1",
"webup-preset-element": "^1.0.0",
"webup-preset-http2": "^1.1.0"
}
}