forked from eclipse-langium/langium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.32 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.32 KB
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
{
"name": "langium-workspaces",
"private": true,
"engineStrict": true,
"engines": {
"npm": "^7.7.0"
},
"scripts": {
"prepare": "npm run clean && npm run build && npm run build --workspace=langium-vscode",
"clean": "rimraf \"packages/**/lib\" \"packages/**/*.tsbuildinfo\"",
"build": "tsc -b tsconfig.build.json",
"watch": "tsc -b tsconfig.build.json -w",
"lint": "npm run lint --workspaces",
"test": "jest --coverage",
"langium:generate": "npm run langium:generate --workspace=langium --workspace=domainmodel --workspace=arithmetics --workspace=statemachine",
"dev-build": "npm run dev-clean && npm install && npm link ./packages/langium && npm link ./packages/langium-cli && npm link ./packages/generator-langium",
"dev-clean": "rimraf ./packages/**/node_modules && npm uninstall -g langium-workspaces langium-cli generator-langium langium && npm unlink langium-workspaces langium-cli generator-langium langium"
},
"devDependencies": {
"@types/jest-expect-message": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"cpy-cli": "^3.1.1",
"eslint": "^7.25.0",
"eslint-plugin-header": "^3.1.1",
"jest": "^26.6.3",
"jest-expect-message": "^1.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.2"
},
"workspaces": [
"packages/*",
"examples/*"
]
}