-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
76 lines (76 loc) · 1.96 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
76
{
"name": "react-fontawesome",
"version": "1.7.1",
"description": "A React component for the font-awesome icon library.",
"repository": {
"type": "git",
"url": "git+https://github.com/danawoodman/react-fontawesome.git"
},
"bugs": {
"url": "https://github.com/danawoodman/react-fontawesome/issues"
},
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"dist": "npm run format && npm run build && npm test && npm run docs",
"docs": "jsdoc2md lib/index.js > api.md",
"format": "prettier-eslint '{src,test}/**/*.js' --single-quote --no-semi es5 --write",
"test": "mocha",
"watch": "npm run watch-build & npm run watch-test",
"watch-build": "npm run build -- --watch",
"watch-test": "npm run test -- -w"
},
"keywords": [
"react",
"font-awesome",
"fontawesome",
"bootstrap",
"icons",
"fonts",
"icon",
"danawoodman",
"big",
"style",
"jsx",
"react-component",
"component"
],
"author": {
"name": "Dana Woodman",
"email": "[email protected]",
"url": "danawoodman.com"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-plugin-add-module-exports": "1.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "4.2.0",
"eslint": "6.6.0",
"eslint-plugin-nodeca": "^1.0.3",
"eslint-plugin-react": "7.16.0",
"jsdoc-to-markdown": "5.0.2",
"mocha": "6.2.2",
"mocha-jsdom": "2.0.0",
"mocha-sinon": "^2.0.0",
"prettier-eslint": "9.0.0",
"prettier-eslint-cli": "5.0.0",
"react": "16.11.0",
"react-dom": "16.11.0",
"sinon": "7.5.0",
"sinon-chai": "3.3.0"
},
"homepage": "https://github.com/danawoodman/react-fontawesome#readme",
"engines": {
"node": ">=0.10.0"
},
"peerDependencies": {
"react": ">=0.12.0"
},
"dependencies": {
"prop-types": "^15.5.6"
}
}