forked from baloise/web-app-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
39
40
{
"name": "root",
"private": true,
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/baloise/web-app-utils/issues"
},
"homepage": "https://github.com/baloise/web-app-utils",
"author": {
"name": "Gery Hirschfeld",
"email": "gerhard.hirschfeld@baloise.ch",
"url": "https://github.com/hirsch88"
},
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"docs": "node ./.scripts/docs.js",
"release": "lerna publish --conventional-commits --exact --force-publish --yes",
"canary": "lerna publish --canary --preid beta --dist-tag beta --exact --force-publish --yes",
"update:lock": "lerna exec -- npm install --package-lock-only"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"chalk": "^4.1.2",
"figlet": "^1.5.2",
"glob": "^7.1.7",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"resolutions": {
"tar": ">=4.4.18"
},
"dependencies": {}
}