-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "sdk",
"private": true,
"scripts": {
"bs": "lerna bootstrap",
"build": "yarn build:webapp && yarn build:sdk",
"build:webapp": "lerna run build --scope @saagie/sdk-webapp --stream",
"build:sdk": "lerna run build --scope @saagie/sdk --stream",
"deploy": "yarn build && lerna publish --force-publish",
"dev": "lerna run dev --scope @saagie/* --stream --parallel",
"lint": "lerna run lint --scope @saagie/* --stream --parallel -- --max-warnings 0",
"test": "lerna run test --scope @saagie/* --stream --parallel",
"verdaccio:publish": "yarn deploy --canary --registry http://localhost:4873",
"verdaccio:unpublish": "version=$(npm view @saagie/sdk dist-tags.canary --registry http://localhost:4873) && npm unpublish @saagie/sdk@${version} --registry=http://localhost:4873"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"auto": "10.34.1",
"lerna": "4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/saagie/sdk"
},
"bugs": {
"url": "https://github.com/saagie/sdk/issues"
},
"auto": {
"plugins": [
"npm",
"released"
],
"onlyPublishWithReleaseLabel": true
}
}