-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 2.66 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
{
"name": "analyticsdx-vscode",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/forcedotcom/analyticsdx-vscode.git"
},
"engines": {
"node": ">=18.15.0"
},
"dependencies": {
"node": "^18.15.0",
"npm": "^6"
},
"devDependencies": {
"@salesforce/dev-config": "1.5.0",
"@types/lerna-alias": "3.0.4",
"@types/shelljs": "0.8.11",
"@vscode/test-electron": "2.3.8",
"eslint": "6.7.2",
"eslint-config-prettier": "2.9.0",
"lerna": "4.0.0",
"lerna-alias": "3.0.2",
"nlf": "2.1.1",
"prettier": "2.6.2",
"shelljs": "0.8.5",
"shx": "0.3.4",
"tslint": "6.1.3",
"tslint-no-focused-test": "0.5.0",
"typescript": "5.2.2",
"vsce": "1.103.1"
},
"scripts": {
"postinstall": "lerna bootstrap --no-ci -- --no-package-lock && node scripts/reformat-with-prettier",
"bootstrap": "lerna bootstrap --no-ci -- --no-package-lock && node scripts/reformat-with-prettier",
"clean": "shx rm -rf test-assets/sfdx-simple/force-app/main/default/waveTemplates/test_template_* && lerna run clean",
"cleanall": "npm run clean && rm -rf node_modules package-lock.json",
"compile": "lerna run --stream compile",
"lint": "lerna run --stream lint",
"license-report": "node scripts/license-report.js",
"test": "lerna run --concurrency 1 --stream --no-bail test",
"test:unit": "lerna exec --concurrency 1 --stream --bail=false -- npm run test:unit --if-present",
"test:vscode-integration": "lerna exec --concurrency 1 --stream --bail=false -- npm run test:vscode-integration --if-present",
"test:vscode-insiders-integration": "lerna exec --concurrency 1 --stream --bail=false -- npm run test:vscode-insiders-integration --if-present",
"test:vsix-integration": "npm run build-all-vsixs && npm run bootstrap && npm run compile && lerna exec --concurrency 1 --stream --bail=false -- npm run test:vsix-integration --if-present",
"watch": "lerna run --parallel watch",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"reformat": "node scripts/reformat-with-prettier.js",
"vscode:package": "lerna exec --scope @salesforce/analyticsdx-template-lint -- 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",
"update-versions": "node scripts/update-versions.js",
"build-all-vsixs": "node scripts/build-all-vsixs.js",
"update-sha256": "node scripts/update-sha256.js",
"publish-all-vsixs": "node scripts/publish-all-vsixs.js"
}
}