forked from kieler/klighd-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "klighd",
"version": "0.2.1",
"private": true,
"description": "KIELER Lightweight Diagams in the web",
"author": "Kiel University <[email protected]>",
"license": "EPL-2.0",
"bugs": {
"url": "https://rtsys.informatik.uni-kiel.de/jira"
},
"homepage": "https://rtsys.informatik.uni-kiel.de/kieler",
"engines": {
"node": "14.x",
"yarn": "1.x"
},
"workspaces": [
"applications/*",
"packages/*"
],
"scripts": {
"clean": "lerna run clean --parallel",
"lint": "lerna run lint --parallel",
"prebuild": "yarn clean",
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"package": "lerna run build && lerna run package --parallel",
"distribute": "lerna run build && lerna run distribute --parallel"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"lerna": "^4.0.0",
"typescript": "^4.3.2"
}
}