-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.28 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
47
48
49
50
51
52
53
54
55
{
"name": "web-worker",
"version": "0.1.0",
"description": "Consistent Web Workers in browser and Node.",
"main": "./cjs/node.js",
"browser": "./cjs/browser.js",
"exports": {
"browser": "./cjs/browser.js",
"node": "./cjs/node.js",
"default": "./cjs/node.js"
},
"files": [
"cjs",
"browser.js",
"node.js"
],
"scripts": {
"prepare": "babel node.js browser.js -d cjs",
"test": "eslint '*.js' test && node --experimental-modules ./node_modules/.bin/ava"
},
"babel": {
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"./babel-plugin.js"
]
},
"repository": "developit/node-web-worker",
"keywords": [
"worker",
"worker_threads",
"webworker",
"web worker",
"web-worker",
"threads"
],
"authors": [],
"license": "Apache-2.0",
"homepage": "https://github.com/developit/node-web-worker",
"eslintConfig": {
"extends": "developit",
"rules": {
"no-console": 0
}
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"ava": "^2.4.0",
"eslint": "^6.8.0",
"eslint-config-developit": "^1.1.1"
}
}