-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "react-html-document",
"version": "3.1.0",
"description": "A foundational React component useful for rendering full html documents on the server.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/venmo/react-html-document.git"
},
"scripts": {
"test": "mocha --compilers js:babel/register --recursive",
"build": "babel src --out-dir dist",
"dev": "babel-node example-usage-server.js",
"lint": "eslint src test"
},
"keywords": [
"react",
"html-document",
"server rendering",
"html",
"server",
"isomorphic",
"universal",
"jsx"
],
"author": {
"name": "Xavier E. López",
"email": "xavier.lopez@venmo.com"
},
"bugs": {
"url": "https://github.com/venmo/react-html-document/issues"
},
"license": "MIT",
"browser": {
"fs": false
},
"peerDependencies": {
"react": "0.14.x || 15.x.x",
"react-dom": "0.14.x || 15.x.x"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-eslint": "^4.1.3",
"chai": "^3.4.0",
"cheerio": "^0.19.0",
"eslint": "^1.7.3",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.6.3",
"mocha": "^2.3.3",
"react": "^15.0.2"
},
"dependencies": {
"react-dom": "^15.0.2"
}
}