forked from forcedotcom/salesforcedx-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.37 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
{
"devDependencies": {
"@salesforce/dev-config": "1.1.0",
"ajv": "6.1.1",
"eslint": "4.13.1",
"eslint-config-prettier": "2.9.0",
"husky": "0.14.3",
"istanbul": "1.1.0-alpha.1",
"lerna": "2.4.0",
"prettier": "1.6.0",
"remap-istanbul": "^0.9.5",
"shx": "0.2.2",
"snyk": "^1.82.1",
"tslint": "5.5.0",
"typescript": "2.6.2",
"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",
"prepush": "npm run lint",
"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:integration": "lerna run test:integration --concurrency 1 --stream",
"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",
"coverage:system-tests":
"lerna run coverage --scope system-tests --concurrency 1 --stream",
"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",
"synk:test":
"lerna exec --bail=false --ignore salesforcedx-vscode -- snyk test --severity-threshold=medium --show-vulnerable-paths=false",
"synk: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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forcedotcom/salesforcedx-vscode.git"
},
"license": "BSD-3-Clause"
}