forked from roginfarrer/collapsed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.4 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.4 KB
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
{
"name": "react-collapsed",
"version": "2.2.3",
"description": "A tiny React custom-hook for creating flexible and accessible expand/collapse components.",
"main": "dist/react-collapsed.cjs.js",
"module": "dist/react-collapsed.esm.js",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist/ && rollup -c",
"dev": "yarn docz dev",
"test": "rogin-scripts test",
"test-watch": "yarn test --watch",
"test-coverage": "yarn test --coverage",
"lint": "rogin-scripts lint",
"format": "rogin-scripts format",
"validate": "yarn lint && yarn build && yarn test",
"prepublishOnly": "NODE_ENV=production yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roginfarrer/react-collapsed.git"
},
"bugs": {
"url": "https://github.com/roginfarrer/react-collapsed/issues"
},
"keywords": [
"collapse",
"react",
"collapsible",
"animate",
"height",
"render",
"expand",
"hooks",
"auto"
],
"author": "Rogin Farrer <rogin@roginfarrer.com>",
"license": "MIT",
"homepage": "https://react-collapsed.netlify.com/",
"peerDependencies": {
"react": "^16.8.x"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.5",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"docz": "^0.13.7",
"docz-plugin-css": "^0.11.0",
"docz-theme-default": "^0.13.7",
"eslint-plugin-react-hooks": "^1.4.0",
"jest": "^23.6.0",
"jest-dom": "^2.1.0",
"prettier": "^1.16.4",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-hooks-testing-library": "^0.3.3",
"react-testing-library": "^5.2.3",
"regenerator-runtime": "^0.12.1",
"rogin-scripts": "^0.0.6-development",
"rollup": "^0.67.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-terser": "^4.0.4"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"raf": "^3.4.0"
},
"resolutions": {
"docz-core": "^0.13.7"
},
"eslintIgnore": [
"node_modules",
"dist",
".docz",
"coverage"
]
}