-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.69 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
53
54
{
"name": "react-f-ui-modal",
"version": "2.0.1",
"description": "Modal component for React",
"main": "build/modal.js",
"scripts": {
"test": "npm run lint",
"clean": "$(npm bin)/rimraf build",
"lint": "$(npm bin)/eslint --ext .jsx --ext .js src",
"build:jsx": "$(npm bin)/babel src --out-dir build",
"build:scss": "$(npm bin)/node-sass styles/modal.scss styles/modal.css",
"build:example": "$(npm bin)/webpack -p --config example/webpack.config.production.js",
"build": "npm run build:jsx && npm run build:scss",
"prepublish": "npm run clean && npm run test && npm run build",
"deploy:git-push": "git push origin master",
"deploy:ghpages": "$(npm bin)/gh-pages -d example/dist",
"deploy": "npm run build:example && git add -A && git commit -am 'chore: update docs' && npm run deploy:git-push && npm run deploy:ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcomb/react-f-ui-modal.git"
},
"keywords": [
"react",
"modal",
"react-modal",
"react-component"
],
"author": "Eugene Rodionov (https://github.com/theaqua)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fcomb/react-f-ui-modal/issues"
},
"homepage": "https://github.com/fcomb/react-f-ui-modal#readme",
"dependencies": {
"classnames": "2.2.0",
"react-motion": "0.2.7"
},
"peerDependencies": {
"react": "^0.14.2"
},
"devDependencies": {
"babel": "5.8.29",
"babel-eslint": "4.1.3",
"babel-loader": "5.3.3",
"eslint": "1.7.3",
"eslint-config-airbnb": "0.1.0",
"eslint-plugin-react": "3.6.3",
"gh-pages": "0.5.0",
"node-sass": "3.4.1",
"rimraf": "2.4.3",
"webpack": "1.12.2"
}
}