forked from forcedotcom/salesforcedx-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 3.41 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
{
"devDependencies": {
"@salesforce/dev-config": "1.4.1",
"ajv": "6.1.1",
"eslint": "4.13.1",
"eslint-config-prettier": "2.9.0",
"husky": "1.3.1",
"istanbul": "1.1.0-alpha.1",
"lerna": "3.13.1",
"prettier": "1.16.4",
"remap-istanbul": "^0.9.5",
"shx": "0.2.2",
"snyk": "^1.82.1",
"tslint": "5.5.0",
"typescript": "3.1.6",
"vsce": "^1.36.3"
},
"scripts": {
"postinstall": "lerna bootstrap -- --no-package-lock && node scripts/reformat-with-prettier",
"bootstrap": "lerna bootstrap -- --no-package-lock && node scripts/reformat-with-prettier",
"clean": "lerna run clean",
"compile": "lerna run --stream compile",
"lint": "lerna run lint",
"publish": "node scripts/publish.js",
"test": "lerna exec --concurrency 1 --stream --bail=false -- npm run test",
"test:unit": "lerna exec --concurrency 1 --stream --bail=false -- npm run test:unit",
"test:unit-and-system-tests": "lerna exec --ignore system-tests --concurrency 1 --stream --bail=false -- npm run test:unit && npm run coverage:system-tests",
"test:integration": "lerna run test:integration --concurrency 1 --stream",
"test:integration-tests-without-system-tests": "lerna exec --ignore system-tests --concurrency 1 --stream --bail=false -- npm run test:integration && npm run test:vscode-integration",
"test:vscode-integration": "lerna exec --concurrency 1 --stream --bail=false -- npm run test:vscode-integration",
"test:vscode-insiders-integration": "lerna exec --concurrency 1 --stream --bail=false -- npm run test:vscode-insiders-integration",
"test:without-system-tests": "lerna exec --ignore system-tests --concurrency 1 --stream --bail=false -- npm run test",
"test:system-tests": "lerna run test --scope system-tests --concurrency 1 --stream",
"test:vscode-insiders-system-tests": "lerna run test:vscode-insiders-system-tests --scope system-tests --concurrency 1 --stream",
"coverage:system-tests": "lerna exec --scope system-tests --concurrency 1 --stream --bail=false -- npm run coverage:system-tests",
"vscode:package": "lerna exec --scope @salesforce/salesforcedx-* -- npm prune --production && lerna run vscode:package --concurrency 1 && node scripts/reformat-with-prettier",
"vscode:sha256": "lerna run vscode:sha256 --concurrency 1",
"vscode:publish": "lerna run vscode:publish --concurrency 1",
"watch": "lerna run --parallel watch",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"reformat": "node scripts/reformat-with-prettier.js",
"snyk:test": "lerna exec --bail=false --ignore salesforcedx-vscode -- snyk test --severity-threshold=medium --show-vulnerable-paths=false",
"snyk:monitor": "lerna exec --bail=false --ignore salesforcedx-vscode -- snyk monitor --severity-threshold=medium --show-vulnerable-paths=false --org=vazexqi",
"aggregateJUnit": "node scripts/aggregate-junit-xml.js",
"link-lsp": "lerna exec yarn link aura-language-server lwc-language-server lightning-lsp-common --scope salesforcedx-vscode-lightning && lerna exec yarn link lwc-language-server lightning-lsp-common --scope salesforcedx-vscode-lwc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forcedotcom/salesforcedx-vscode.git"
},
"license": "BSD-3-Clause",
"dependencies": {
"node": "10.2.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run reformat"
}
}
}