-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "@qodana/ci",
"version": "1.0.0",
"description": "Common code for Qodana Scan GitHub action and Qodana Azure Pipelines extension.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/JetBrains/qodana-cli.git"
},
"scripts": {
"lint": "npm run -w common lint && npm run -w scan lint && npm run -w vsts lint",
"build": "tsc -b common scan vsts --force",
"test": "npm run -w scan test",
"package": "npm run -w scan package && npm run -w vsts package",
"all": "npm run lint && npm run build && npm run test && npm run package"
},
"contributors": [
{
"name": "Viktor Tiulpin",
"url": "https://github.com/tiulpin"
},
{
"name": "Anastasia Kuznetsova",
"url": "https://github.com/a-kuznetsova"
},
{
"name": "Anton Monakov",
"url": "https://github.com/zeitgen"
}
],
"workspaces": [
"common",
"scan",
"vsts"
],
"devDependencies": {
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.8.2",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.3.3",
"prettier-eslint": "^16.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}