This repository has been archived by the owner on Jan 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
76 lines (76 loc) · 1.85 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
75
76
{
"name": "react-engine",
"version": "4.5.1",
"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 tape",
"lint": "eslint .",
"tape": "tape test/*.js | faucet"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/paypal/react-engine"
},
"bugs": {
"url": "https://github.com/paypal/react-engine/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"debug": "^2.1.3",
"glob": "^7.0.5",
"jsesc": "^2.2.0",
"lodash": "^4.13.1",
"parent-require": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.3.26",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"cheerio": "^0.20.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"express": "^4.12",
"faucet": "0.0.1",
"jsdom": "^9.2.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^3.2.0",
"rewire": "^2.3.1",
"sinon": "^1.14.1",
"tape": "^4.6.0"
},
"peerDependencies": {
"react": "15.x.x || 16.x.x",
"react-dom": "15.x.x || 16.x.x"
},
"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",
"Mark <[email protected]>"
],
"license": "Apache-2.0"
}