-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.08 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
{
"name": "react-expandable-content",
"version": "1.1.0",
"description": "React component to enable text collapse based on a certain height",
"main": "./dist/index.js",
"scripts": {
"dev": "webpack serve --mode=development",
"build:dist": "babel src --out-dir dist --source-maps --ignore src/example",
"build:example": "webpack --progress --config webpack.config.js --mode=production",
"postbuild": "npm run test -s",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Logora/react-expandable-content.git"
},
"keywords": [
"react",
"react-component",
"component",
"react-expandable-content",
"text-collapse",
"text-expand",
"collapsible",
"accordion",
"collapsible-component"
],
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Logora/react-expandable-content/issues"
},
"homepage": "https://github.com/Logora/react-expandable-content#readme",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-css-modules-transform": "^1.2.7",
"coveralls": "^3.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.11.1",
"style-loader": "^3.3.1",
"css-loader": "^6.5.1",
"mini-css-extract-plugin": "^2.4.4",
"html-webpack-plugin": "^5.5.0",
"standard": "^16.0.4",
"styled-components": "^5.3.3",
"webpack": "^5.61.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"directories": {
"example": "examples",
"test": "test"
},
"author": ""
}