-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "react-gateway",
"version": "3.0.0",
"description": "Render React DOM into a new context",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"example": "browserify example/browser.js -o example/bundle.js -t babelify --debug && babel-node example/server.js",
"format": "jsfmt -w *.js src/ test/",
"lint": "eslint src/ test/",
"prepublish": "npm run build",
"test": "karma start"
},
"keywords": [
"react",
"gateway",
"portal",
"modal",
"dialog"
],
"author": "James Kyle <[email protected]>",
"repository": "https://github.com/cloudflare/react-gateway",
"license": "BSD-3-Clause",
"dependencies": {
"prop-types": "^15.5.0",
"react-prop-types": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.1.1",
"babel-core": "^6.0.20",
"babel-eslint": "^6.0.2",
"babel-preset-cf": "^1.2.0",
"babelify": "^7.2.0",
"browserify-istanbul": "^0.2.1",
"chai": "^3.4.1",
"defined": "^1.0.0",
"eslint": "^1.8.0",
"eslint-plugin-cflint": "^1.0.0",
"express": "^4.13.3",
"jsfmt": "^0.5.2",
"karma": "^0.13.15",
"karma-beep-reporter": "^0.1.4",
"karma-browserify": "^4.4.0",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.3.0",
"karma-tape-reporter": "^1.0.3",
"minimist": "^1.2.0",
"mocha": "^2.3.3",
"react-addons-test-utils": "^15.0.0-0",
"react": "^15.0.0-0",
"react-dom": "^15.0.0-0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
}
}