forked from Stanko/react-animate-height
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.61 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
{
"name": "react-animate-height",
"version": "2.0.8",
"description": "Lightweight React component for animating height using CSS transitions.",
"main": "lib/AnimateHeight.js",
"types": "lib/index.d.ts",
"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"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"build": "rm -rf ./lib && NODE_ENV=\"production\" babel ./source --out-dir ./lib && cp source/index.d.ts ./lib",
"build-docs": "rm -rf ./dist-docs && EXAMPLE=\"true\" NODE_ENV=\"production\" webpack",
"publish-to-npm": "npm run build && npm publish",
"publish-docs": "sh publish-docs.sh",
"publish-all": "npm run publish-to-npm && npm run publish-docs",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"lint-break-on-errors": "eslint ./source ./webpack.config.js -f table --ext .js --ext .jsx",
"lint": "eslint ./source ./webpack.config.js -f table --ext .js --ext .jsx || true",
"preview": "rm -rf ./dist && NODE_ENV=\"production\" webpack-dev-server"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-runtime": "^6.6.1",
"css-loader": "^0.28.11",
"eslint": "^3.10.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.9.0",
"postcss-loader": "^1.1.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.2.1"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": ">=15.6.2",
"react-dom": ">=15.6.2"
},
"keywords": [
"react",
"react-component",
"slide",
"slide up",
"slide down",
"animate height"
],
"license": "MIT"
}