-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"private": true,
"author": "Kiel University <[email protected]>",
"license": "EPL-2.0",
"homepage": "https://rtsys.informatik.uni-kiel.de/kieler",
"scripts": {
"clean": "lerna run clean --parallel",
"lint": "eslint . --ext .ts",
"prebuild": "yarn clean",
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"package": "lerna run build && lerna run package --parallel",
"prettier": "prettier --write extension/src/",
"distribute": "lerna run build && lerna run distribute --parallel",
"test": "mocha --require ts-node/register test/**/*.ts"
},
"devDependencies": {
"lerna": "^3.20.2",
"typescript": "^4.9.3",
"rewire": "^6.0.0",
"mocha": "^10.2.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"eslint": "^8.35.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"ts-node": "^10.9.1"
},
"workspaces": [
"extension"
],
"dependencies": {
}
}