-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 905 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
{
"name": "rxjs-lifegame",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run connect & npm run watch & open http://localhost:3334",
"connect": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify src/index.ts -p tsify --noImplicitAny > dist/bundle.js",
"watch": "watchify --extension=ts -p tsify --noImplicitAny -o dist/bundle.js src/index.ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/rx": "^2.5.29",
"browserify": "^13.0.0",
"browserify-versionify": "^1.0.6",
"connect": "^3.4.1",
"serve-static": "^1.10.2",
"tsify": "^2.0.2",
"typescript": "^2.0.3",
"watchify": "^3.7.0"
},
"dependencies": {
"es6-shim": "^0.35.1",
"rxjs": "^5.0.0-rc.1",
"snabbdom": "https://github.com/bokuweb/snabbdom.git#change_typedef"
}
}