-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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": "npm-audit-reporter-teamcity",
"version": "0.4.0",
"description": "generate TeamCity code inspections from the output of `npm audit`",
"main": "dist/index.js",
"bin": "bin/index.js",
"files": [
"bin",
"dist/*.js",
"dist/legacy/*.js",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"pretest": "npm run lint",
"test": "jest --detectOpenHandles",
"lint": "npm run eslint",
"eslint": "eslint -c .eslintrc ./src/**"
},
"keywords": [
"teamcity",
"npm",
"security",
"audit"
],
"author": "Igor Shevchenko",
"contributors": [
{
"name": "Michele Preziuso",
"email": "[email protected]",
"url": "https://github.com/mpreziuso"
}
],
"license": "MIT",
"dependencies": {
"teamcity-service-messages": "0.1.14"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "18.18.13",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.7.0",
"prettier": "2.8.8",
"ts-jest": "29.1.5",
"typescript": "5.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cy6erskunk/npm-audit-reporter-teamcity/"
}
}