forked from paypal/react-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "react-engine",
"version": "3.1.0",
"description": "a composite render engine for express apps to render both plain react views and react-router views",
"main": "index.js",
"scripts": {
"test": "npm run jscs && grunt eslint && npm run tape",
"jscs": "jscs --verbose .",
"tape": "tape test/*.js | faucet"
},
"repository": {
"type": "git",
"url": "[email protected]:paypal/react-engine.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"debug": "^2.1.3",
"glob": "^5.0.3",
"history": "^1.12.2",
"lodash": "^3.10.1",
"parent-require": "^1.0.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel-core": "^6.3.26",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"cheerio": "^0.19.0",
"esprima-fb": "^14001.1.0-dev-harmony-fb",
"express": "^4.12",
"faucet": "0.0.1",
"grunt": "^0.4.5",
"grunt-babel": "^5.0.1",
"grunt-cli": "^0.1.13",
"grunt-config-dir": "^0.3.2",
"grunt-eslint": "^17.2.0",
"jscs": "^1.11.3",
"jsdom": "3.0.0",
"jshint": "^2.6.3",
"react": "^0.14.0",
"react-router": "^1.0.3",
"rewire": "^2.3.1",
"sinon": "^1.14.1",
"tape": "^3.5.0",
"time-grunt": "^1.2.1"
},
"keywords": [
"react",
"render",
"render engine",
"react-router",
"view engine",
"express",
"jsx"
],
"author": "Sam Selvanathan <[email protected]>",
"contributors": [
"Vu Hwang <[email protected]>",
"Robert Kuo <[email protected]>",
"Jinto Jose <[email protected]>",
"Jared Halpert <[email protected]>",
"Weng Zhi Ping",
"Vincent Orr <[email protected]>",
"skarflacka"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
]
}