forked from alexandreneves/react-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "@aneves/react-modal",
"description": "Modal React Component",
"author": "Alexandre Neves <adn.denied@gmail.com>",
"keywords": [
"react-modal",
"react-dialog",
"react",
"modal",
"dialog"
],
"version": "0.1.12",
"license": "MIT",
"homepage": "https://github.com/alexandreneves/react-modal#readme",
"main": "index.js",
"scripts": {
"build": "npm run build-js & npm run build-css & npm run build-example",
"build-js": "babel src/Modal.jsx --out-file dist/Modal.js & babel src/ModalWrapper.jsx --out-file dist/ModalWrapper.js",
"build-css": "gulp sass",
"build-example": "cd ./example && webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexandreneves/react-modal.git"
},
"bugs": {
"url": "https://github.com/alexandreneves/react-modal/issues"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"gulp": "^3.9.1",
"gulp-sass": "^2.2.0",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"dependencies": {
"@aneves/js-closest": "^0.1.1"
}
}