-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.86 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
{
"name": "root",
"private": true,
"engines": {
"yarn": ">=1.7.0 <2.x.x",
"node": "^14.15.0 || >=16.0.0"
},
"scripts": {
"prepare": "lerna run prepare",
"build": "lerna run build",
"lint": "lerna run lint --",
"lint:fix": "lerna run lint:fix",
"watch": "lerna run --parallel watch",
"test": "lerna run test",
"test:ci": "export JUNIT_REPORT_PATH=./mocha-jenkins-report.xml && lerna run test:ci",
"start": "yarn --cwd examples/example-server start",
"publish:prepare": "lerna version --no-private --ignore-scripts --yes --no-push",
"publish:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --no-verify-access --ignore-scripts --no-push",
"publish:next": "SHA=$(git rev-parse --short HEAD) && lerna publish preminor --exact --canary --preid next.${SHA} --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes --no-verify-access",
"upgrade:next": "yarn upgrade -p \"@eclipse-emfcloud.*\" --next "
},
"devDependencies": {
"@sinonjs/referee": "^9.1.1",
"@types/chai": "^4.3.0",
"@types/chai-like": "^1.1.1",
"@types/mocha": "^9.1.0",
"@types/sinon": "^10.0.11",
"@types/urijs": "^1.19.19",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"chai-like": "^1.1.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.0.0",
"ignore-styles": "^5.0.1",
"lerna": "^6.0.0",
"mocha": "^9.2.1",
"mocha-jenkins-reporter": "^0.4.7",
"prettier": "^2.4.1",
"rimraf": "^2.6.1",
"sinon": "^13.0.1",
"ts-node": "^10.5.0",
"typescript": "^4.2.3"
},
"workspaces": [
"examples/*",
"packages/*"
]
}