-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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": "rebel-icons",
"version": "2.0.2",
"description": "Include an awesome rebel icons in your React projects with `react-icons`. You can use ES6 imports that allows you to include only icons that your project is using. Highly customizable set of icons.",
"main": "lib/index",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"camelcase": "^4.0.0",
"glob": "^7.1.1",
"react": "^15.4.1",
"svgo": "^0.7.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"scripts": {
"generate": "npm run clean-src && node generator.js",
"build": "npm run generate && npm run clean-lib && babel src --out-dir lib",
"clean-src": "rm -rf src/rebel-lib/*",
"clean-lib": "rm -rf lib/*"
},
"repository": {
"type": "git",
"url": "https://github.com/SphereSoftware/rebel-icons"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-1"
]
},
"files": [
"lib",
"src"
],
"keywords": [
"react",
"rebel",
"rebel-icons",
"svg",
"components",
"icons"
],
"author": "Anton Shemerey",
"contributors": [
"Alla Odeianenko",
"Aleksandr Zhukov"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SphereSoftware/rebel-icons/issues"
},
"homepage": "https://github.com/SphereSoftware/rebel-icons#readme"
}