-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "@aneves/react-modal",
"version": "0.1.16",
"author": "Alexandre Neves <adn.denied@gmail.com>",
"description": "Modal React Component",
"homepage": "https://github.com/alexandreneves/react-modal",
"license": "MIT",
"keywords": [
"react-modal",
"react-dialog",
"react",
"modal",
"dialog"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alexandreneves/react-modal.git"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"gulp": "^3.9.1",
"gulp-sass": "^2.3.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.3"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"dependencies": {
"@aneves/js-closest": "^0.1.3"
},
"scripts": {
"build": "npm run build-css && npm run build-js && npm run copy-to-example",
"build-js": "babel src -d dist",
"build-css": "gulp sass",
"copy-to-example": "cp -r dist/ example/src/modal"
}
}