-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "workerize",
"version": "0.1.8",
"description": "Run a module in a Web Worker.",
"main": "dist/workerize.js",
"module": "dist/workerize.m.js",
"source": "src/index.js",
"repository": "developit/workerize",
"loader": "./loader.js",
"scripts": {
"build": "microbundle",
"prepublishOnly": "npm run build",
"release": "npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"test": "echo \"Error: no test specified\" && exit 0"
},
"eslintConfig": {
"extends": "eslint-config-developit",
"rules": {
"prefer-spread": 0,
"prefer-rest-params": 0
}
},
"files": [
"src",
"dist",
"loader.js"
],
"keywords": [
"worker",
"web workers",
"threads"
],
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
"license": "MIT",
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-developit": "^1.1.1",
"microbundle": "^0.4.3"
}
}