forked from qimingweng/react-modal-dialog
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 KB
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
{
"name": "tonchidot-react-modal-dialog",
"version": "0.1.0",
"description": "A simple, idiomatic, and declarative way to launch modal dialogs in ReactJS",
"repository": {
"type": "git",
"url": "https://github.com/tonchidot/react-modal-dialog"
},
"main": "lib/index.js",
"edusightMain": "src/index.js",
"scripts": {
"prepublish": "npm run build",
"start": "npm run build",
"github": "./scripts/publishStaticSite.sh",
"build": "babel src --out-dir lib --stage 0"
},
"author": "Qiming Weng",
"license": "MIT",
"dependencies": {
"active-event-stack": "^1.0.0",
"aphrodite": "^0.4.1",
"classnames": "^2.1.2",
"dynamics.js": "^1.1.0",
"immutable": "^3.7.4",
"jss": "^3.1.0",
"jss-camel-case": "^1.0.0",
"jss-nested": "^1.0.1",
"jss-px": "^1.0.0",
"jss-vendor-prefixer": "^1.0.0",
"keycode": "^2.1.0",
"lodash": "^3.9.3",
"react-center-component": "^3.0.0",
"react-jss": "^2.0.6"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel": "^5.8.34",
"babel-eslint": "^4.1.5",
"css-loader": "^0.15.1",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.8.0",
"extract-text-webpack-plugin": "^0.8.2",
"node-libs-browser": "^0.5.2",
"postcss-loader": "^0.5.1",
"webpack": "^1.10.0"
}
}