-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
74 lines (74 loc) · 2.46 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-modal2",
"version": "5.0.2",
"description": "Simple modal component for React.",
"repository": "cloudflare/react-modal2",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"example": "npm run example:basic & npm run example:animated & npm run example:redux & npm run example:universal",
"example:animated": "browserify --debug example/animated/script.js -o example/animated/bundle.js -t babelify",
"example:basic": "browserify --debug example/basic/script.js -o example/basic/bundle.js -t babelify",
"example:redux": "browserify --debug example/redux/script.js -o example/redux/bundle.js -t babelify",
"example:universal": "browserify --debug example/universal/browser.js -o example/universal/bundle.js -t babelify && babel-node example/universal/server.js",
"format": "jsfmt -w *.js src/ test/",
"lint": "eslint *.js src/ test/",
"prepublish": "npm run build",
"test": "karma start"
},
"keywords": [
"react",
"modal",
"dialog",
"stateless"
],
"author": "James Kyle <[email protected]>",
"license": "BSD-3-Clause",
"peerDependencies": {
"react": "^0.14.9 || ^15.0.0-0 || ^16.0.0-0"
},
"dependencies": {
"a11y-focus-scope": "^1.1.0",
"a11y-focus-store": "^1.0.0",
"exenv": "^1.2.0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-cli": "^6.1.1",
"babel-core": "^6.0.20",
"babel-preset-cf": "^1.2.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-preset-stage-1": "^6.1.2",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"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",
"isparta": "^4.0.0",
"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": "^15.5.4",
"react-addons-css-transition-group": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-gateway": "^2.2.0",
"react-redux": "^4.0.0",
"redux": "^3.0.4"
}
}