-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "react-icons-kit",
"version": "2.0.0",
"description": "React Icons Kit using various Svg Icon set",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"react",
"react icons",
"react svg icons",
"fontawesome",
"material design icons",
"icons",
"icons react",
"react-icons",
"react-icons-kit"
],
"author": "Warren Mira <warrenmira@gmail.com>",
"license": "MIT",
"scripts": {
"predist": "rimraf dist/",
"dist": "babel src --out-dir dist && cp package.json README.md index.d.ts dist",
"test": "jest",
"test:watch": "jest --watch",
"update:octicons": "npm update @primer/octicons && cd scripts && ./extract-octicons.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmira/react-icons-kit.git"
},
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@primer/octicons": "^9.6.0",
"cheerio": "^0.22.0",
"cross-env": "^3.1.3",
"css-loader": "^2.1.1",
"fstream": "^1.0.10",
"jest": "^24.5.0",
"node-zip": "^1.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.3.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"svgfont2js": "^0.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"camel-case": "^3.0.0",
"prop-types": "^15.5.8"
}
}