-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 985 Bytes
/
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": "worker-inlinify",
"version": "1.1.3",
"description": "worker-inlinify transforms separate web worker script reference into inline script so there is no need to carry/deploy additional worker script file.",
"main": "worker-inlinify.js",
"scripts": {
"build": "tsc",
"test": "mocha --require intelli-espower-loader",
"debug": "node debug.js",
"debug-brk": "node --inspect --debug-brk debug.js"
},
"keywords": [
"web",
"worker",
"inline",
"blob",
"script",
"inlinify"
],
"author": "Sheng Jiang",
"license": "MIT",
"devDependencies": {
"@types/node": "^9.6.56",
"chai": "^4.2.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.2.0",
"power-assert": "^1.6.1"
},
"dependencies": {
"acorn": "^5.7.4",
"text2jsvar": "^1.2.1"
},
"bin": {
"worker-inlinify": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/js1016/worker-inlinify.git"
}
}