forked from TryGhost/Ghost-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
39
40
{
"name": "ghost-app",
"version": "0.0.3",
"description": "Build your own app on top of Ghost",
"author": "Ghost Foundation",
"homepage": "http://ghost.org",
"keywords": [
"ghost",
"blog",
"app",
"plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/TryGhost/Ghost-App.git"
},
"bugs": "https://github.com/TryGhost/Ghost-App/issues",
"contributors": "https://github.com/TryGhost/Ghost-App/graphs/contributors",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=testing mocha -- $(find test -name '*_spec.js')",
"coverage": "NODE_ENV=testing istanbul cover --dir test/coverage _mocha -- $(find test -name '*_spec.js')",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn publish && git push --follow-tags; fi"
},
"engines": {
"node": "^6.9.0 || ^8.9.0"
},
"dependencies": {
"bluebird": "3.5.1",
"lodash": "4.17.4"
},
"devDependencies": {
"istanbul": "0.4.5",
"mocha": "4.0.1",
"should": "13.1.3",
"sinon": "4.1.3"
}
}