forked from cloudflare/react-gateway
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "@chardskarth/react-gateway",
"version": "3.1.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": "jest --verbose"
},
"keywords": [
"react",
"gateway",
"portal",
"modal",
"dialog"
],
"author": "Richard Domingo <[email protected]>",
"repository": "https://github.com/chardskarth/react-gateway",
"license": "BSD-3-Clause",
"dependencies": {
"prop-types": "^15.5.0",
"react-prop-types": "^0.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.4",
"babel-eslint": "^6.0.2",
"babelify": "^7.2.0",
"browserify-istanbul": "^0.2.1",
"defined": "^1.0.0",
"eslint": "^1.8.0",
"eslint-plugin-cflint": "^1.0.0",
"express": "^4.13.3",
"jest": "^25.1.0",
"jsfmt": "^0.5.2",
"minimist": "^1.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"@testing-library/react": "12.1.5"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
}
}