-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "omnistream",
"version": "0.1.4",
"description": "Stream based state management for React built on RxJs",
"main": "./dist/",
"scripts": {
"test": "ava",
"build": "babel src --out-dir dist",
"build:pack": "babel src --out-dir dist && npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soup-js/omnistream.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/soup-js/omnistream/issues"
},
"homepage": "https://github.com/soup-js/omnistream#readme",
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"rxjs": "^5.0.0-rc.4"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-tape-runner": "^2.0.1",
"mocha": "^3.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"ava": {
"babel": {
"presets": [
"es2015"
]
},
"require": ["babel-register"]
}
}