-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "react-dom-stream",
"version": "0.5.1",
"description": "A streaming server-side rendering library for React.",
"main": "index.js",
"scripts": {
"test": "(cd ../react && grunt test)",
"build": "(cd ../react && grunt build) && ./node_modules/babel-cli/bin/babel.js modules --out-dir build",
"postbuild": "rm -rf lib && cp -R ../react/build/packages/react/lib lib && rm -rf dist && cp -R ../react/build/packages/react/dist dist",
"prepublish": "npm run build"
},
"author": "Sasha Aickin",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aickin/react-dom-stream.git"
},
"homepage": "https://github.com/aickin/react-dom-stream",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"envify": "^3.0.0",
"fbjs": "^0.3.1",
"lru-cache": "^4.0.0"
},
"browserify": {
"transform": [
"envify"
]
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13"
}
}