-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
64 lines (64 loc) · 1.63 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-fa",
"version": "5.0.0",
"description": "Font Awesome icons as React components",
"main": "lib/index.js",
"dependencies": {
"font-awesome": "^4.3.0",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": ">= 0.13.0 <17.0.0"
},
"files": [
"lib/"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^21.2.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.0.0",
"css-loader": "^0.18.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"flow-bin": "^0.56.0",
"jest-cli": "^21.2.1",
"prettier": "^1.7.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"style-loader": "^0.12.0",
"url-loader": "^0.5.5",
"webpack": "^1.12.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "eslint \"src/**/*.js\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/andreypopp/react-fa"
},
"keywords": [
"react",
"react-component",
"font-awesome",
"icons"
],
"author": "Andrey Popp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreypopp/react-fa/issues"
},
"homepage": "http://andreypopp.github.io/react-fa/"
}