-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
88 lines (88 loc) · 2.08 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
{
"name": "worker-plugin",
"version": "5.0.1",
"description": "Webpack plugin to bundle Workers automagically.",
"main": "dist/worker-plugin.js",
"repository": "GoogleChromeLabs/worker-plugin",
"scripts": {
"build": "microbundle --raw --inline none --format cjs --no-compress src/*.js",
"prepack": "npm run build",
"dev": "jest --verbose --watchAll",
"test": "npm run build && jest --verbose",
"release": "npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"eslintConfig": {
"extends": "eslint-config-standard",
"env": {
"browser": true,
"jest": true
},
"rules": {
"indent": [
"error",
2
],
"semi": [
"error",
"always"
]
}
},
"jest": {
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/fixtures/"
]
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"files": [
"src",
"dist",
"loader.js"
],
"keywords": [
"webpack",
"plugin",
"worker",
"web worker",
"thread"
],
"author": "The Chromium Authors",
"contributors": [
{
"name": "Jason Miller",
"email": "developit@google.com"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@file-services/memory": "^1.0.3",
"@file-services/node": "^1.0.3",
"@file-services/overlay": "^1.0.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"clean-webpack-plugin": "^1.0.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"memory-fs": "^0.4.1",
"microbundle": "^0.8.2",
"puppeteer": "^3.0.2",
"serve-handler": "^5.0.7",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.26.1"
},
"dependencies": {
"loader-utils": "^1.1.0"
},
"peerDependencies": {
"webpack": ">= 4"
}
}