-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
57 lines (57 loc) · 1.41 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "rxjs-in-action",
"version": "1.0.0",
"description": "The code sample repository for the RxJS in Action book",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"bin": {
"rxjs-in-action": "./bin/rxjs-in-action"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RxJSInAction/rxjs-in-action.git"
},
"keywords": [
"rx",
"rxjs",
"reactive-programming",
"async",
"functional",
"frp"
],
"author": "Paul Daniels",
"license": "ISC",
"bugs": {
"url": "https://github.com/RxJSInAction/rxjs-in-action/issues"
},
"homepage": "https://github.com/RxJSInAction/rxjs-in-action#readme",
"devDependencies": {
"babel-preset-es2015-rollup": "^3.0.0",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-sourcemaps": "^2.4.0",
"jquery": "^3.2.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-stream": "^1.19.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"babel-polyfill": "6.22.0",
"babel-standalone": "6.21.1",
"body-parser": "1.16.0",
"bootstrap": "3.3.7",
"chai": "^3.5.0",
"chai-as-promised": "6.0.0",
"codemirror": "5.20.2",
"connect": "3.5.0",
"connect-route": "0.1.5",
"http-proxy-middleware": "0.17.3",
"rxjs": "5.0.3",
"serve-static": "1.11.1",
"websocket": "1.0.23"
}
}