-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "river-react",
"version": "0.0.4",
"description": "Reactive stream composer for React application",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src",
"check": "npm run lint",
"build:example": "webpack --config example/counter/webpack.config.js",
"build:lib": "babel src --out-dir lib",
"build": "npm run build:lib && npm run build:example",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d6u/River.git"
},
"keywords": [
"river",
"react",
"rx",
"flux",
"stream",
"observable",
"reactive"
],
"author": "Daiwei Lu <[email protected]> (http://daiwei.lu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/d6u/River/issues"
},
"homepage": "https://github.com/d6u/River",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"eslint": "^1.5.0",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.4.2",
"react": "^0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"rimraf": "^2.4.3",
"rx": "^3.1.2",
"webpack": "^1.12.2"
}
}