forked from coreui/coreui-icons-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.46 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.46 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
{
"name": "@coreui/icons-react",
"version": "1.1.0",
"description": "CoreUI Icons React component",
"license": "MIT",
"homepage": "https://coreui.io",
"type": "module",
"author": {
"name": "CoreUI",
"url": "https://coreui.io",
"github": "https://github.com/coreui",
"twitter": "https://twitter.com/core_ui"
},
"contributors": [
{
"name": "CoreUI Team",
"url": "https://github.com/orgs/coreui/people"
}
],
"repository": {
"type": "git",
"url": "https://github.com/coreui/coreui-icons-react.git"
},
"bugs": {
"url": "https://github.com/coreui/coreui-icons-react/issues"
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "src/index.d.ts",
"files": [
"es/",
"lib/",
"src/",
"umd/",
"README.md"
],
"scripts": {
"build": "nwb build-react-component --copy-files --no-demo",
"clean": "nwb clean-module && nwb clean-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"lint": "eslint src"
},
"dependencies": {
"@coreui/icons": "^2.0.1",
"classnames": "^2.2.6",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^17.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"nwb": "^0.25.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"keywords": [
"coreui",
"coreui-icons",
"coreui-react",
"icons",
"svg",
"svg-icons",
"layout",
"component",
"react"
]
}