forked from TryGhost/gatsby-source-ghost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "gatsby-source-ghost",
"version": "3.3.0",
"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"
],
"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": "5.3.0",
"eslint-plugin-ghost": "0.0.26",
"lodash": "^4.17.11",
"mocha": "5.2.0",
"proxyquire": "^2.1.0",
"should": "13.2.3",
"sinon": "6.1.5"
},
"dependencies": {
"@tryghost/content-api": "1.0.0",
"bluebird": "^3.5.1",
"gatsby-node-helpers": "^0.3.0",
"qs": "^6.5.2"
}
}