This repository has been archived by the owner on Feb 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
78 lines (78 loc) · 2.02 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
70
71
72
73
74
75
76
77
78
{
"name": "react-motion-menu",
"version": "0.4.4",
"main": "lib/index.js",
"scripts": {
"watch:example": "watchify --extension=js -o docs/dist/bundle.js docs/src/index.js",
"compile": "babel --presets react -d lib/ src/",
"build:example": "browserify --extension=js -o docs/dist/bundle.js docs/src/index.js",
"lint": "eslint ./src",
"styleguide": "styleguidist build",
"test:watch": "karma start --auto-watch --no-single-run",
"test": "npm run lint && karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/bokuweb/react-motion-menu.git"
},
"keywords": [
"react",
"menu",
"motion",
"component",
"animation"
],
"author": "bokuweb",
"license": "MIT",
"bugs": {
"url": "https://github.com/bokuweb/react-motion-menu/issues"
},
"homepage": "https://github.com/bokuweb/react-motion-menu",
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-espower": "2.3.1",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babelify": "7.3.0",
"browserify": "^13.3.0",
"enzyme": "^2.7.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"flow-bin": "^0.37.4",
"karma": "^1.3.0",
"karma-browserify": "5.1.0",
"karma-cli": "^1.0.1",
"karma-mocha": "1.3.0",
"karma-nightmare": "^0.2.7",
"mocha": "3.2.0",
"power-assert": "1.4.2",
"react": ">=15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": ">=15.4.1",
"react-test-renderer": "^15.5.4",
"sinon": "^1.17.7",
"watchify": "3.8.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"prop-types": "^15.5.10",
"react-motion": "^0.4.7"
},
"files": [
"lib"
]
}