forked from nkbt/react-collapse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.83 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-collapse",
"version": "4.0.3",
"description": "Component-wrapper for collapse animation with react-motion for elements with variable (and dynamic) height",
"main": "lib/index.js",
"config": {
"component": "ReactCollapse",
"externals": {
"react": "React",
"react-dom": "ReactDOM",
"react-motion": "ReactMotion"
},
"include": [
"https://unpkg.com/react/umd/react.production.min.js",
"https://unpkg.com/react-dom/umd/react-dom.production.min.js",
"https://unpkg.com/react-motion/build/react-motion.js"
]
},
"scripts": {
"build": "scripts/build.js",
"start": "scripts/dev.js",
"dist": "scripts/dist.js",
"e2e": "scripts/e2e.js",
"ghPages": "scripts/ghPages.js",
"lib": "scripts/lib.js",
"lint": "scripts/lint.js",
"pub": "scripts/pub.js",
"test": "scripts/test.js",
"prepublish": "yarn build",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/nkbt/react-collapse.git"
},
"keywords": [
"component",
"react-component",
"react-motion",
"react",
"collapse",
"slide-down",
"slide-up"
],
"author": "Nik Butenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkbt/react-collapse/issues"
},
"homepage": "https://github.com/nkbt/react-collapse",
"peerDependencies": {
"react": ">=15.3",
"react-motion": "^0.4 || ^0.5"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^0.28.8",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"finalhandler": "^1.1.0",
"gh-pages": "^1.1.0",
"glob": "^7.1.2",
"html-webpack-include-assets-plugin": "^1.0.2",
"html-webpack-plugin": "^2.30.1",
"nightwatch": "^0.9.19",
"portfinder": "^1.0.13",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-motion": "^0.5.2",
"rimraf": "^2.6.2",
"serve-static": "^1.13.1",
"style-loader": "^0.19.1",
"tape": "^4.8.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.1"
},
"files": [
"build",
"lib",
"src",
"LICENSE",
"package.json",
"README.md"
]
}