-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.15 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": "salto-io",
"license": "Apache-2.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"salto-vscode/**"
]
},
"resolutions": {
"**/debug": "^4.1.1",
"**/color-convert" : "^2.0.1"
},
"devDependencies": {
"concurrently": "^5.2.0",
"jsonc-parser": "^2.2.1",
"lerna": "^3.20.2"
},
"scripts": {
"preinstall": "./build_utils/find_conflicting_versions.js",
"verify": "./build_utils/verify_tsconfig_references.js",
"pre-build": "yarn verify && yarn generate",
"build": "yarn pre-build && yarn build-ts && yarn lint",
"generate": "lerna run --parallel generate",
"lint": "lerna run --parallel lint",
"lint-fix": "lerna run --parallel lint-fix",
"build-ts": "lerna run build-ts",
"build-all": "lerna run build",
"clean": "lerna run --parallel clean",
"test": "jest",
"generate-notices-file": "./build_utils/generate_notices.sh",
"lerna-version": "lerna version --no-git-tag-version --exact",
"lerna-version-pr": "./build_utils/create_version_pr.sh",
"lerna-publish": "lerna publish from-package"
},
"version": "0.0.0"
}