-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 930 Bytes
/
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
{
"name": "gatsby-plugin-fontawesome-css",
"version": "1.2.0",
"description": "Gatsby plugin that disables Font Awesome auto CSS insertion and instead inserts it at compile time.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jzabala/gatsby-plugin-fontawesome-css.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"fontawesome",
"font-awesome"
],
"peerDependencies": {
"gatsby": "^4.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.0"
},
"author": "Johnny Zabala <[email protected]>",
"license": "MIT",
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"react": "^16.13.1"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/example"
]
}
}