This repository has been archived by the owner on May 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
69 lines (69 loc) · 2.05 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
67
68
69
{
"name": "react-motion-drawer",
"version": "3.1.0",
"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",
"dev": "run-p \"build --watch\" serve",
"serve": "npm run build-example && webpack-dev-server --config example/webpack.config.js",
"open": "opn http://localhost:8888/example/index.html",
"lint": "eslint lib",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"major-release": "npm version major && npm publish && git push --follow-tags",
"prepare": "npm run build"
},
"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]> (http://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",
"npm-run-all": "^4.1.2",
"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"
}
}