-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
41
42
43
44
45
{
"name": "async-dom",
"version": "1.0.0",
"description": "Async Dom libs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-domino": "browserify ./src/lib/dom/domino-async.js -o ./src/lib/dom/domino-async-bundle.js",
"compile-simple-dom": "browserify ./src/lib/dom/simple-dom.js -o ./src/lib/dom/simple-dom-bundle.js",
"compile-jsdom": "browserify ./src/lib/dom/jsdom.js -o ./src/lib/dom/jsdom-bundle.js",
"s": "http-server ./src -p 8080",
"ws": "node ./src/server.js",
"serve": "concurrently \"npm run s\" \"npm run ws\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lifeart/async-dom.git"
},
"keywords": [
"DOM",
"Async"
],
"author": "Aleksandr Kanunnikov <lifeart92@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lifeart/async-dom/issues"
},
"homepage": "https://github.com/lifeart/async-dom#readme",
"devDependencies": {
"browserify": "^16.1.0",
"concurrently": "^3.5.1",
"domino": "^2.0.1",
"http-server": "^0.11.1",
"jsdom": "^11.6.2",
"promise": "^8.0.1",
"simple-dom": "^1.4.0-alpha.82914663",
"uws": "^9.14.0"
},
"dependencies": {
"eslint": "^4.18.1",
"webworker-threads": "^0.7.13",
"workbox-sw": "^2.1.2",
"ws": "^4.1.0"
}
}