forked from FortAwesome/react-fontawesome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.27 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@fortawesome/react-fontawesome",
"description": "Official React component for Font Awesome 5",
"version": "0.1.0",
"main": "index.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
"types": "index.d.ts",
"homepage": "https://github.com/FortAwesome/react-fontawesome",
"repository": {
"type": "git",
"url": "https://github.com/FortAwesome/react-fontawesome.git"
},
"contributors": [
"Travis Chase <[email protected]>",
"Rob Madole <[email protected]>",
"Mike Wilkerson <[email protected]>"
],
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"dist": "cross-env NODE_ENV=production npm run build",
"lint": "eslint src",
"prettier": "pretty-quick src --staged",
"precommit": "npm run lint && npm run prettier && lint-staged",
"prepack": "npm run dist",
"test": "jest",
"clean": "rm -f index.js && rm -f index.es.js"
},
"lint-staged": {
"README.md": ["markdown-toc -i"]
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.0-7",
"react": "16.x"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.0-7",
"@types/react": "^16.1.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.1.0",
"markdown-toc": "^1.2.0",
"prettier": "^1.11.1",
"pretty-quick": "^1.2.2",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0"
},
"dependencies": {
"humps": "^2.0.1",
"prop-types": "^15.5.10"
},
"files": ["index.js", "index.es.js", "index.d.ts"]
}