-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 680 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 680 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
{
"private": true,
"repository": "https://github.com/TryGhost/NQL",
"author": "Ghost Foundation",
"license": "MIT",
"workspaces": [
"packages/*"
],
"eslintIgnore": [
"**/node_modules/**"
],
"scripts": {
"dev": "echo \"Implement me!\"",
"build": "lerna run --scope @tryghost/nql-lang build",
"presetup": "yarn",
"setup": "lerna bootstrap",
"test": "lerna run test",
"pretest": "yarn build",
"lint": "lerna run lint",
"preship": "yarn test",
"ship": "lerna publish --git-remote ${GHOST_UPSTREAM:-origin}"
},
"devDependencies": {
"eslint": "8.39.0",
"eslint-plugin-ghost": "3.5.0",
"lerna": "7.2.0"
}
}