forked from yuanyan/boron
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 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
{
"name": "reboron",
"version": "0.4.8",
"description": "A collection of dialog animations with React.js",
"main": "Boron.js",
"author": "Jeremy Ayerst",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jerairrest/reboron.git"
},
"scripts": {
"build": "npm run drop & npm run fade & npm run fly & npm run factory & npm run outline & npm run scale & npm run wave",
"drop": "babel src/DropModal.js --out-file DropModal.js",
"fade": "babel src/FadeModal.js --out-file FadeModal.js",
"fly": "babel src/FlyModal.js --out-file FlyModal.js",
"factory": "babel src/modalFactory.js --out-file modalFactory.js",
"outline": "babel src/OutlineModal.js --out-file OutlineModal.js",
"scale": "babel src/ScaleModal.js --out-file ScaleModal.js",
"wave": "babel src/WaveModal.js --out-file WaveModal.js"
},
"dependencies": {
"domkit": "^0.0.1"
},
"peerDependencies": {
"prop-types": ">=15.0",
"react": ">=0.15.0"
},
"devDependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"babel-cli": "^6.24.0",
"babel-core": "6.17.0",
"babel-eslint": "7.1.1",
"babel-jest": "17.0.2",
"babel-loader": "6.2.7",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-app": "^2.0.1",
"babel-preset-react-hmre": "^1.1.1"
},
"keywords": [
"react",
"react-component",
"dialog",
"modal"
]
}