forked from stoeffel/react-motion-drawer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "react-motion-drawer",
"version": "2.1.7",
"description": "Navigation drawer built with the awesome react-motion and react-hammerjs",
"scripts": {
"build": "babel lib --out-dir ./",
"build-example": "webpack --config example/webpack.config.js",
"serve": "webpack-dev-server --config example/webpack.config.js",
"open": "opn http://localhost:8888/example/index.html",
"lint": "eslint lib",
"patch-release": "npm run build && npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm run build && npm version minor && npm publish && git push --follow-tags",
"major-release": "npm run build && npm version major && npm publish && git push --follow-tags"
},
"main": "./drawer.js",
"files": [
"drawer.js",
"styles.js"
],
"repository": {
"type": "git",
"url": "https://github.com/stoeffel/react-motion-drawer.git"
},
"keywords": [
"react",
"reactjs",
"react-motion",
"react-hammerjs",
"touch",
"drawer",
"navigation"
],
"author": "Christoph Hermann <[email protected]> (https://github.com/stoeffel)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoeffel/react-motion-drawer/issues"
},
"homepage": "https://github.com/stoeffel/react-motion-drawer",
"peerDependencies": {
"react": "^15.4.2 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.1.10",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.9.0",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.5",
"opn-cli": "^3.1.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"dependencies": {
"1-liners": "^0.4.0",
"prop-types": "^15.5.10",
"react-hammerjs": "^1.0.1",
"react-motion": "^0.5.2"
}
}