-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.02 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
{
"name": "virtualdom-in-web-worker",
"description": "This is a proof-of-concept to show how a web app can run entirely in a Web Worker, off the main thread.",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"postinstall": "jspm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/theefer/virtualdom-in-web-worker.git"
},
"author": "Sébastien Cevey <[email protected]>",
"license": "GPL-2",
"bugs": {
"url": "https://github.com/theefer/virtualdom-in-web-worker/issues"
},
"homepage": "https://github.com/theefer/virtualdom-in-web-worker",
"jspm": {
"directories": {},
"dependencies": {
"dom-delegator": "npm:dom-delegator@^13.1.0",
"vdom-virtualize": "npm:vdom-virtualize@^0.0.10",
"virtual-dom": "npm:virtual-dom@^2.0.1"
},
"devDependencies": {
"traceur": "github:jmcriffey/[email protected]",
"traceur-runtime": "github:jmcriffey/[email protected]"
}
}
}