-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
61
62
{
"name": "snyk-nuget-plugin",
"description": "Snyk CLI NuGet plugin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest --coverage --runInBand",
"test:smoke": "jest --coverage --silent=false --detectOpenHandles --testMatch **/*.spec.smoke.ts --bail",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint -c .eslintrc '{lib,test}/**/*.ts'",
"lint:prettier": "prettier --check '{lib,test}/**/*.{ts,csproj,json}' --log-level 'warn'",
"lint:fix": "prettier --write '{lib,test}/**/*.{ts,csproj,json}' && eslint -c .eslintrc --fix '{lib,test}/**/*.ts'",
"build": "tsc",
"build:watch": "tsc -w",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-nuget-plugin.git"
},
"keywords": [
"snyk",
"nuget"
],
"author": "snyk.io",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"files": [
"bin",
"dist"
],
"bugs": {
"url": "https://github.com/snyk/snyk-nuget-plugin/issues"
},
"homepage": "https://github.com/snyk/snyk-nuget-plugin#readme",
"dependencies": {
"@snyk/cli-interface": "^2.14.0",
"@snyk/dep-graph": "^2.8.1",
"debug": "^4.3.4",
"dotnet-deps-parser": "5.5.3",
"jszip": "3.10.1",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"snyk-paket-parser": "1.6.0",
"tslib": "^2.6.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.48.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}