-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
60 lines (60 loc) · 2.07 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
{
"name": "@eclipse-che/workspace-client",
"version": "0.0.1",
"description": "",
"main": "dist/server.js",
"browser": "dist/client.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && webpack-cli --mode production --config webpack.config.js",
"test": "jest",
"lint:check": "tsc --project ./tsconfig.json --noEmit && eslint '{src,test}/**/*.ts'",
"lint:fix": "tsc --project ./tsconfig.json --noEmit && eslint '{src,test}/**/*.ts' --fix",
"format:check": "tsc --project ./tsconfig.json --noEmit && yarn prettier --config .prettierrc --check '**/*.{js,ts}' package.json",
"format:fix": "tsc --project ./tsconfig.json --noEmit &&yarn prettier --config .prettierrc --write '**/*.{js,ts}' package.json",
"test:coverage": "yarn test --coverage",
"license:check": "docker run --rm -t -v ${PWD}/:/workspace/project quay.io/che-incubator/dash-licenses:next --check",
"license:generate": "docker run --rm -t -v ${PWD}/:/workspace/project quay.io/che-incubator/dash-licenses:next"
},
"contributors": [
{
"name": "Oleksii Kurinnyi",
"email": "[email protected]"
}
],
"license": "EPL-2.0",
"dependencies": {
"@eclipse-che/api": "^7.0.0-beta-4.0",
"axios": "^0.21.4",
"qs": "^6.9.4",
"tunnel": "0.0.6"
},
"devDependencies": {
"@types/jest": "^25.2.0",
"@types/node": "^14.0.10",
"@types/qs": "^6.9.3",
"@types/tunnel": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^25.5.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"ts-loader": "^7.0.5",
"typescript": "~4.4.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/eclipse/che-workspace-client"
},
"bugs": {
"url": "https://github.com/eclipse/che-workspace-client/issues"
}
}