-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
64 lines (64 loc) · 1.74 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
63
64
{
"name": "react-feather",
"version": "2.0.10",
"description": "React component for Feather icons",
"main": "build/index.js",
"module": "dist/index.js",
"sideEffects": false,
"typings": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "rm -rf src/icons && node bin/build.js",
"build:bundle": "rm -rf build && rollup --config rollup.config.js",
"build:es": "rm -rf dist && babel src --out-dir dist --copy-files",
"build": "concurrently \"npm:build:*\""
},
"files": [
"dist",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/feathericons/react-feather.git"
},
"keywords": [
"react",
"icons",
"svg",
"inline",
"feather",
"design"
],
"author": "Carmelo Pullara",
"license": "MIT",
"bugs": {
"url": "https://github.com/feathericons/react-feather/issues"
},
"homepage": "https://github.com/feathericons/react-feather#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"feather-icons": "^4.29.0",
"prettier-eslint": "^9.0.0",
"rollup": "^2.3.3",
"rollup-plugin-babel": "^4.3.3",
"uppercamelcase": "^3.0.0"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}