-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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-mvn-plugin",
"description": "Snyk CLI Maven plugin",
"homepage": "https://github.com/snyk/snyk-mvn-plugin",
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-mvn-plugin"
},
"main": "dist/index.js",
"directories": {
"test": "test"
},
"files": [
"dist"
],
"engines": {
"node": "^18"
},
"scripts": {
"build": "tsc",
"format:check": "prettier --check '{lib,test}/**/*.{js,ts,json,yml}'",
"format": "prettier --write '{lib,tests}/**/*.{js,ts,json,yml}'",
"lint": "npm run format:check && npm run lint:eslint",
"lint:eslint": "eslint --color --cache 'lib/**/*.{js,ts}'",
"prepare": "npm run build",
"test:jest": "npm run prepare && jest",
"test": "npm run prepare && npm run test:functional && npm run test:system && npm run test:jest",
"test:functional": "tap --disable-coverage --allow-incomplete-coverage --allow-empty-coverage ./tests/tap/functional/*.test.ts",
"test:system": "tap --disable-coverage --allow-incomplete-coverage --allow-empty-coverage --timeout=180 ./tests/tap/system/*.test.ts",
"semantic-release": "semantic-release"
},
"author": "snyk.io",
"license": "Apache-2.0",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"semantic-release": "^15",
"sinon": "^2.4.1",
"tap": "^18.5.0",
"tap-only": "0.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@snyk/cli-interface": "2.11.3",
"@snyk/dep-graph": "^1.23.1",
"debug": "^4.3.4",
"glob": "^7.1.6",
"packageurl-js": "^1.0.0",
"shescape": "1.6.1",
"tslib": "^2.4.0"
}
}