-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1022 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
39
{
"name": "gatsby-source-mysql",
"version": "2.2.3",
"description": "Source plugin for pulling data into Gatsby from MySQL database.",
"author": "Malcolm Kee <[email protected]>",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"mysql"
],
"license": "MIT",
"dependencies": {
"gatsby-node-helpers": "^0.3.0",
"lodash": "^4.17.15",
"mysql": "^2.18.1",
"pluralize": "^8.0.0"
},
"peerDependencies": {
"gatsby": ">2.0.0",
"gatsby-source-filesystem": ">2.0.0"
},
"main": "index.js",
"repository": "https://github.com/malcolm-kee/gatsby-source-mysql",
"homepage": "https://github.com/malcolm-kee/gatsby-source-mysql#readme",
"bugs": {
"url": "https://github.com/malcolm-kee/gatsby-source-mysql/issues"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"eslint": "^7.4.0",
"gatsby-source-filesystem": "^2.3.18",
"jest": "^26.1.0"
}
}