forked from SAP/app-studio-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.82 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"engines": {
"node": ">=12",
"pnpm": ">=6"
},
"scripts": {
"version": "pnpm install && git add pnpm-lock.yaml",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"release:version": "lerna version",
"release:publish": "lerna publish from-git --yes --no-verify-access",
"ci": "npm-run-all legal:* format:validate lint:validate ci:subpackages coverage:merge",
"ci:subpackages": "pnpm -r run ci",
"compile": "pnpm -r run clean && tsc --build",
"compile:watch": "pnpm -r run clean && tsc --build --watch",
"format:fix": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"format:validate": "prettier --check \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore",
"lint:fix": "eslint . --ext=js,ts,vue --fix --max-warnings=0 --ignore-path=.gitignore",
"lint:validate": "eslint . --ext=js,ts,vue --max-warnings=0 --ignore-path=.gitignore",
"coverage:merge": "node ./scripts/merge-coverage",
"legal:delete": "pnpm -r exec -- shx rm -rf .reuse LICENSES || true",
"legal:copy-reuse": "pnpm -r exec -- shx cp -r ../../.reuse .reuse",
"legal:copy-license": "pnpm -r exec -- shx cp -r ../../LICENSES LICENSES"
},
"devDependencies": {
"@types/vscode": "^1.49.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.3",
"@types/sinon": "^10.0.4",
"@types/lodash": "4.14.177",
"eslint": "7.30.0",
"@typescript-eslint/parser": "4.33.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"deep-equal-in-any-order": "^1.1.15",
"sinon": "^11.1.2",
"coveralls": "^3.1.1",
"npm-run-all": "4.1.5",
"lerna": "4.0.0",
"husky": "7.0.4",
"cz-conventional-changelog": "3.3.0",
"@commitlint/cli": "13.2.0",
"@commitlint/config-conventional": "13.2.0",
"lint-staged": "11.2.0",
"prettier": "2.4.1",
"typescript": "^4.4.3",
"shx": "^0.3.3",
"rimraf": "^3.0.2",
"patch-package": "6.4.7",
"vsce": "1.100.1",
"webpack": "5.61.0",
"webpack-cli": "4.9.1",
"make-dir": "^3.1.0",
"glob": "^7.2.0"
},
"lint-staged": {
"*.{js,ts,json,md}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix --max-warnings=0 --ignore-pattern=!.*"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"pnpm": {
"overrides": {
"@sap/artifact-management-mdkplugin": "npm:pre-bundled@^2.2.1"
}
}
}