-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 KB
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
63
64
65
{
"name": "snyk-nodejs-plugin",
"description": "Snyk CLI NodeJS plugin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest --coverage --runInBand",
"lint": "eslint --color --cache '{lib,test}/**/*.{js,ts}' && prettier --check '{lib,test}/**/*.{js,ts}'",
"format": "prettier --write '{lib,test}/**/*.{js,ts,json}'",
"build": "tsc",
"build:watch": "tsc -w",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-nodejs-plugin.git"
},
"keywords": [
"snyk",
"nodejs"
],
"author": "snyk.io",
"license": "Apache-2.0",
"engines": {
"node": "^18"
},
"files": [
"bin",
"dist"
],
"bugs": {
"url": "https://github.com/snyk/snyk-nodejs-plugin/issues"
},
"homepage": "https://github.com/snyk/snyk-nodejs-plugin#readme",
"dependencies": {
"@snyk/cli-interface": "^2.13.0",
"@snyk/dep-graph": "^2.7.4",
"debug": "^4.3.4",
"lodash": "^4.18.1",
"lodash.groupby": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.sortby": "^4.7.0",
"micromatch": "4.0.8",
"snyk-nodejs-lockfile-parser": "2.7.0",
"snyk-resolve-deps": "4.8.0"
},
"overrides": {
"@yarnpkg/core": {
"cross-spawn": "^7.0.5",
"tar@6.2.1": "7.5.9"
}
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"jest": "^29.6.2",
"prettier": "^3.0.3",
"ts-jest": "^29.1.2",
"typescript": "^5.1.6"
}
}