forked from zenn-dev/zenn-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1015 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
32
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^5.4.3"
},
"scripts": {
"test": "lerna run test --stream",
"lint": "lerna run lint --stream && npm run lint-lockfile",
"lint-lockfile": "npx lockfile-lint --path yarn.lock --allowed-hosts npm yarn --validate-https",
"lint:strict": "lerna run lint:strict --stream",
"lint:fix": "lerna run lint:fix --stream",
"build": "lerna run build --stream",
"publish:all": "npm run test && npm run build && lerna publish",
"publish:canary": "npm run build && lerna publish --pre-dist-tag canary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenn-dev/zenn-editor.git"
},
"author": "catnose99 <[email protected]> (https://twitter.com/catnose99)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zenn-dev/zenn-editor/issues"
},
"homepage": "https://github.com/zenn-dev/zenn-editor#readme",
"publishConfig": {
"access": "public"
}
}