This repository has been archived by the owner on Feb 5, 2025. It is now read-only.
forked from cloudflare/react-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"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": "prettier --single-quote --write \"{src,test}/**/*.js\"",
"lint": "eslint src/ test/",
"prepublish": "npm run build",
"test": "karma start"
},
"keywords": [
"react",
"gateway",
"portal",
"modal",
"dialog"
],
"author": "James Kyle <me@thejameskyle.com>",
"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.0.2",
"babel-core": "^6.0.20",
"babel-eslint": "^8.2.6",
"babel-preset-cf": "^2.0.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"browserify-istanbul": "^3.0.1",
"chai": "^4.1.2",
"defined": "^1.0.0",
"eslint": "^5.1.0",
"eslint-plugin-cflint": "^1.0.0",
"express": "^4.13.3",
"karma": "^2.0.4",
"karma-beep-reporter": "^0.1.4",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"karma-tape-reporter": "^1.0.3",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7",
"react": "^16.3.0-0",
"react-dom": "^16.3.0-0",
"watchify": "^3.11.0"
},
"peerDependencies": {
"react": "^16.3.0"
}
}