-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 3.46 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
{
"name": "syside-packages",
"private": true,
"publisher": "Sensmetry",
"author": {
"name": "Sensmetry",
"url": "https://sensmetry.com/",
"email": "[email protected]"
},
"version": "0.8.0",
"repository": {
"url": "https://gitlab.com/sensmetry/public/sysml-2ls",
"type": "git"
},
"bugs": {
"url": "https://gitlab.com/sensmetry/public/sysml-2ls/-/issues"
},
"scripts": {
"lint": "eslint packages --ext ts --max-warnings 0",
"clean": "shx rm -rf packages/**/lib packages/**/out packages/**/*.tsbuildinfo *.tsbuildinfo",
"prebuild": "pnpm run -r --if-present prebuild",
"build": "pnpm run prebuild && tsc -b tsconfig.build.json && pnpm run --dir packages/syside-vscode build",
"watch": "pnpm run prebuild && concurrently -n tsc,vscode -c blue,blue,yellow \"tsc -b tsconfig.build.json -w\" \"pnpm run --dir packages/syside-vscode watch\"",
"build:clean": "pnpm run clean && pnpm run build",
"prepare": "pnpm run build",
"test": "jest --passWithNoTests",
"test:ci": "jest --config ./jest.config.js --passWithNoTests --collectCoverage --coverageDirectory=\"./coverage\" --ci --reporters=default --reporters=jest-junit --watchAll=false",
"prepare-release": "node ./scripts/prepare-release.mjs",
"vscode:package": "pnpm --dir packages/syside-vscode run vscode:package",
"vscode:publish": "pnpm --dir packages/syside-vscode run vscode:publish",
"ovsx:publish": "pnpm --dir packages/syside-vscode run ovsx:publish",
"install-hooks": "esbuild ./.githooks/pre-commit.ts --outfile=.git/hooks/pre-commit --bundle --format=cjs --platform=node",
"tstrace": "pnpm run clean && pnpm run prebuild && tsc -b tsconfig.build.json --generateTrace trace",
"index": "pnpm run -r --if-present index",
"prepare-validation": "pnpm --dir packages/syside-languageserver prepare-validation",
"run-validation": "pnpm --dir packages/syside-languageserver run-validation",
"grammar": "pnpm --dir packages/syside-languageserver grammar",
"grammar:generate": "pnpm --dir packages/syside-languageserver grammar:generate",
"grammar:watch": "pnpm --dir packages/syside-languageserver grammar:watch",
"update-stdlib": "node ./scripts/update-stdlib.mjs"
},
"devDependencies": {
"@jest/expect-utils": "^29.4.3",
"@jest/globals": "^29.4.3",
"@octokit/rest": "^19.0.7",
"@swc/core": "^1.3.35",
"@swc/jest": "^0.2.24",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^14.18.36",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"commander": "^10.0.1",
"concurrently": "^8.0.1",
"esbuild": "^0.17.10",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.5.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"expect": "^29.4.3",
"fs-extra": "^11.1.0",
"jest": "^29.4.3",
"jest-junit": "^15.0.0",
"jest-matcher-utils": "^29.4.3",
"jest-snapshot": "^29.5.0",
"node-stdlib-browser": "^1.2.0",
"octokit": "^2.0.14",
"prettier": "^3.0.0",
"rollup-plugin-license": "^3.5.2",
"shx": "^0.3.4",
"tsx": "^3.12.3",
"typescript": "5.1.3"
}
}