-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 2.47 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
{
"name": "react-collapsible-component",
"version": "1.3.4",
"description": "ReactJs collapsible accordion component. Light, simple and functional. Allows expand and collapse HTML content. Ready for use in your ReactJs application.",
"main": "dist/index.js",
"scripts": {
"watch": "webpack --watch --config webpack.config.js",
"build": "webpack --config webpack.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devzonetech/react-collapsible-component.git"
},
"keywords": [
"collapsible",
"collapsible accordion",
"collapsible component",
"accordion component",
"reactjs",
"javascript",
"expand html content",
"accordion content",
"accordion component",
"collapsible accordion panel"
],
"author": "Devzone Tech Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/devzonetech/react-collapsible-component/issues"
},
"homepage": "https://github.com/devzonetech/react-collapsible-component#readme",
"peerDependencies": {
"react": ">= 16.x.x",
"react-dom": ">= 16.x.x"
},
"dependencies": {
"style-loader": "^0.20.3"
},
"devDependencies": {
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-transform-regenerator": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.7.6",
"ajv": "^6.10.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^2.1.1",
"eslint-plugin-react": "^7.16.0",
"hoek": "^5.0.4",
"jest": "^24.9.0",
"jest-css-modules": "^2.1.0",
"node-sass": "^4.13.1",
"react": ">= 16.x.x",
"react-test-renderer": "^16.11.0",
"sass-loader": "^6.0.7",
"schema-utils": "^2.6.1",
"tar": "^4.4.13",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|scss|sss|styl)$": "<rootDir>/node_modules/jest-css-modules"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/demo/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}