-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 KB
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
{
"name": "rollup-plugin-webworkify",
"version": "0.0.4",
"description": "Bundles web worker alongside your main.",
"author": "Allex Wang <allex.wxn@gmail.com>",
"main": "lib/index.js",
"repository": "allex/rollup-plugin-webworkify",
"scripts": {
"build": "npm run lint:fix && rollup-bundle --config ./.fssrc.js",
"prepare": "npm run build",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint"
},
"keywords": [
"rollup",
"rollup-plugin",
"webworker",
"worker"
],
"dependencies": {
"rollup-pluginutils": "^2"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-external-helpers": "^7.0.0-beta.47",
"@babel/plugin-transform-runtime": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/runtime": "^7.0.0-beta.49",
"@fedor/standard": "latest",
"babel-core": "next",
"babel-plugin-transform-decorators-legacy": "latest",
"estree-walker": "^0.5.1",
"magic-string": "^0.22.4",
"resolve": "^1.5.0",
"rollup-plugin-babel": "beta",
"rollup-plugin-terser": "^1.0.1",
"rollup-worker": "next"
},
"license": "MIT",
"standard": {
"ignore": [
"src/index2.js"
]
}
}