-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
{
"name": "@eligundry/gatsby-source-goodreads",
"version": "1.0.4",
"description": "Gatsby source the provides user shelves from GoodReads",
"main": "index.js",
"scripts": {
"build": "tsc --outDir .",
"prepublishOnly": "npm run build"
},
"author": "eligundry@gmail.com <Eli Gundry>",
"repository": {
"type": "git",
"url": "https://github.com/eligundry/gatsby-source-goodreads"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"goodreads"
],
"license": "MIT",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSpacing": true
},
"peerDependencies": {
"gatsby": "~3.x.x || ~4.x.x",
"gatsby-source-filesystem": "~3.x.x || ~4.x.x"
},
"devDependencies": {
"@types/jsdom": "^16.2.10",
"gatsby": "^4.0.1",
"gatsby-source-filesystem": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"dependencies": {
"axios": "^0.24.0",
"jsdom": "^18.0.0",
"lodash": "^4.17.21"
}
}