forked from pfefferle/react-openwebicons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 941 Bytes
/
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
{
"name": "react-openwebicons",
"version": "1.0.0",
"description": "OpenWebIcons as React components",
"main": "lib/react-openwebicons.js",
"types": "lib/@types/react-openwebicons.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/pfefferle/react-openwebicons.git"
},
"author": "Matthias Pfefferle",
"license": "MIT",
"scripts": {
"build": "tsc -p . && mv src/react-openwebicons.js* lib/ && mv src/react-openwebicons.d.ts lib/@types/"
},
"keywords": [
"react",
"openwebicons",
"icons",
"icon-font",
"font",
"react-component"
],
"engines": {
"node": ">=7.5.0"
},
"dependencies": {
"openwebicons": "*",
"react": "^15.4.2"
},
"peerDependencies": {
"openwebicons": "*",
"react": ">=15.4.0"
},
"devDependencies": {
"@types/react": "^15.0.10",
"ts-loader": "^2.0.0",
"typescript": "^2.1.6",
"webpack": "^2.2.1"
}
}