-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "gatsby-source-ghost",
"version": "5.0.3",
"description": "Gatsby source plugin for building websites using the Ghost API as a data source.",
"repository": "[email protected]:TryGhost/gatsby-source-ghost.git",
"author": "Ghost Foundation",
"license": "MIT",
"keywords": [
"gatsby",
"ghost",
"gatsby-plugin",
"gatsby-source-plugin"
],
"engines": {
"node": "18.x || 20.x"
},
"scripts": {
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint",
"test": "NODE_ENV=testing mocha -- $(find test -name '*.test.js')",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn publish && git push --follow-tags; fi"
},
"devDependencies": {
"eslint": "8.37.0",
"eslint-plugin-ghost": "2.16.0",
"mocha": "10.2.0",
"proxyquire": "2.1.3",
"should": "13.2.3",
"sinon": "15.0.3"
},
"dependencies": {
"@tryghost/content-api": "1.11.7",
"cheerio": "1.0.0-rc.12",
"gatsby-node-helpers": "0.3.0",
"qs": "6.11.1"
}
}