forked from Stanko/react-animate-height
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "react-animate-height",
"version": "0.9.9",
"description": "Lightweight, no dependency React component for animating height using CSS transitions.",
"main": "lib/AnimateHeight.js",
"author": "Stanko",
"homepage": "https://github.com/Stanko/react-animate-height",
"repository": {
"type": "git",
"url": "https://github.com/Stanko/react-animate-height.git"
},
"bugs": {
"url": "https://github.com/Stanko/react-animate-height/issues"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"classnames": "^2.1.2",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"gulp": "^3.9.0",
"react": "^15.5.4",
"prop-types": "^15.5.8",
"react-component-gulp-tasks": "^0.7.6",
"react-dom": "^15.5.4"
},
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "NODE_ENV=production gulp publish:examples",
"release": "NODE_ENV=production gulp release",
"start": "gulp dev",
"test": "echo \"no tests yet\" && exit 0",
"watch": "gulp watch:lib",
"prepublish": "npm run build"
},
"keywords": [
"react",
"react-component",
"slide",
"slide up",
"slide down",
"animate height"
],
"license": "MIT"
}