-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 840 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 840 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
{
"name": "rx-workshop",
"version": "1.0.0",
"description": "A workshop with code work to teach Rx.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "justin@cix.io",
"license": "MIT",
"scripts": {
"00": "node ./00-hello-world.js",
"01": "node ./01-basic-array.js",
"02": "node ./02-rx-conversion.js",
"03": "node ./03-rx-basic-anatomy.js",
"04": "node ./04-rx-create-method.js",
"05": "node ./05-rx-complex-anatomy.js",
"06": "node ./06-rx-async.js",
"07": "node ./07-rx-async-improved.js",
"08": "node ./08-rx-async-pipeline.js",
"09": "node ./09-rx-flatten-observables.js",
"10": "node ./10-rx-exported-functions.js",
"11": "node ./11-rx-user-testing.js"
},
"dependencies": {
"rxjs": "^5.4.2",
"superagent": "^4.1.0"
}
}