-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
31 lines (31 loc) · 916 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
{
"name": "admin-api-experiments",
"version": "0.0.0",
"license": "MIT",
"repository": "[email protected]:TryGhost/admin-api-experiments.git",
"author": "Ghost Foundation",
"main": "app.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint",
"preship": "yarn test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version && git push --follow-tags; fi"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-plugin-ghost": "2.11.0",
"mocha": "8.4.0",
"should": "13.2.3",
"sinon": "11.1.2"
},
"dependencies": {
"@tryghost/admin-api": "^1.7.0",
"@tryghost/content-api": "^1.5.1",
"bluebird": "^3.7.1",
"jwks-client": "^1.4.1",
"lodash": "^4.17.15",
"lorem-ipsum": "2.0.4"
}
}