-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
52 lines (52 loc) · 1.16 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
{
"name": "react-async",
"version": "3.0.0-dev",
"description": "React components with async data fetching",
"main": "lib/index.js",
"browser": {
"./lib/index.js": "./lib/index.web.js",
"./src/index.js": "./src/index.web.js"
},
"dependencies": {
"ascii-json": "~0.2.0"
},
"peerDependencies": {
"react": "^0.13.0"
},
"devDependencies": {
"axios": "^0.5.2",
"babel": "^5.0.8",
"babelify": "^6.0.1",
"bluebird": "^2.9.24",
"browserify": "^6.1.0",
"connect-browserify": "~3.2.1",
"express": "~4.9.8",
"fibers": "~1.0.1",
"mocha": "~1.21.5",
"mochify": "^1.4.0",
"phantomjs": "^1.9.11",
"react": "^0.13.0",
"rx": "^2.5.1",
"semver": "~4.1.0"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git://github.com/andreypopp/react-async"
},
"keywords": [
"react-component",
"async",
"server-rendering",
"isomorphic",
"react"
],
"author": "Andrey Popp <8mayday@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreypopp/react-async/issues"
},
"homepage": "https://github.com/andreypopp/react-async"
}