-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"name": "@coreui/icons-react",
"version": "2.3.0",
"description": "Official React component for CoreUI Icons",
"keywords": [
"coreui",
"coreui-icons",
"coreui-react",
"icons",
"svg",
"svg-icons",
"layout",
"component",
"react"
],
"homepage": "https://coreui.io/react/docs/components/icon/",
"bugs": {
"url": "https://github.com/coreui/coreui-icons-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/coreui/coreui-icons-react.git"
},
"license": "MIT",
"author": "The CoreUI Team (https://github.com/orgs/coreui/people)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "rollup --config",
"test": "jest --coverage",
"test:update": "jest --coverage --updateSnapshot"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"classnames": "^2.5.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.29.1",
"rollup-plugin-import-css": "^3.5.8",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
}
}