-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 780 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 780 Bytes
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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TryGhost/SDK.git"
},
"author": "Ghost Foundation",
"license": "MIT",
"workspaces": [
"packages/*"
],
"eslintIgnore": [
"**/node_modules/**"
],
"scripts": {
"dev": "echo \"Implement me!\"",
"setup": "yarn install",
"test": "lerna run test",
"lint": "lerna run lint",
"preship": "yarn test",
"ship": "lerna version --git-remote ${GHOST_UPSTREAM:-origin}",
"ship:ci": "lerna publish from-package --yes --no-private"
},
"devDependencies": {
"eslint": "8.57.1",
"eslint-plugin-ghost": "3.5.0",
"eslint-plugin-react": "7.37.5",
"lerna": "9.0.7",
"mocha": "11.7.5",
"should": "13.2.3",
"sinon": "21.0.3"
}
}