-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 824 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 824 Bytes
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
{
"name": "sandbox-with-webworker",
"version": "1.1.0",
"description": "Sandbox sensitive or heavy tasks in Web Worker threads",
"author": "thavixt",
"license": "ISC",
"keywords": [
"web",
"worker",
"sandbox",
"webworker",
"thread",
"task"
],
"main": "index.js",
"directories": {
"example": "example",
"src": "src"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"gh-pages": "npm run build && cp src/sandbox.js example/sandbox.js && sed -i 's/\\.\\.\\/src\\/sandbox\\.js/\\.\\/sandbox\\.js/g' example/index.js && gh-pages -d example && git clean -df && git checkout -- .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"gh-pages": "^2.2.0",
"typescript": "^3.8.3"
}
}