-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "cycle-mvi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm install ; jspm install",
"test": "echo 'test'",
"js": "jspm bundle-sfx index index.min.js",
"js2": "jspm bundle-sfx index-component-check index-component-check.min.js",
"watch": "watch 'npm run js' ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpinbitZ/cycle-mvi.git"
},
"keywords": [
"cycle.js",
"mvi",
"reactive",
"model-view-intent"
],
"author": "Joel D Morrison <[email protected]> (http://spinbitz.net)",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpinbitZ/cycle-mvi/issues"
},
"homepage": "https://github.com/SpinbitZ/cycle-mvi#readme",
"devDependencies": {
"jspm": "^0.16.32",
"rx": "^4.1.0",
"rxjs": "^5.0.0-beta.4",
"watch": "^0.17.1"
},
"jspm": {
"configFile": "jspm_config.js",
"dependencies": {
"@cycle/core": "npm:@cycle/core@^6.0.3",
"@cycle/dom": "npm:@cycle/dom@^9.2.2",
"@cycle/isolate": "npm:@cycle/isolate@^1.2.0",
"cyclejs": "npm:cyclejs@^0.26.0",
"rx": "npm:rx@^4.1.0",
"rx-combine-latest-obj": "npm:rx-combine-latest-obj@^1.0.2",
"rx-dom": "npm:rx-dom@^7.0.3",
"rxjs": "npm:rxjs@^5.0.0-beta.4"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
},
"dependencies": {
"rx-combine-latest-obj": "^1.0.2"
}
}