-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.79 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
{
"name": "snyk-go-plugin",
"description": "Snyk CLI Golang plugin",
"homepage": "https://github.com/snyk/snyk-go-plugin",
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-go-plugin"
},
"engines": {
"node": ">=12"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build-watch": "tsc -w",
"lint": "eslint --color --cache '{lib,test}/**/*.{js,ts}' && prettier --check '{lib,test}/**/*.{js,ts}'",
"prepare": "npm run build",
"format": "prettier --write '{lib,test}/**/*.{js,ts,json}'",
"test-functional": "tap ./test/*.test.ts -R spec",
"test-system": "tap -R spec --timeout=300 ./test/system/*.test.ts",
"test": "npm run test-functional && npm run test-system",
"test-functional-windows": "tap -R spec --timeout=300 ./test/*.test.ts -g \"^(?!.*symlink)\"",
"test-system-windows": "tap -R spec --timeout=300 ./test/system/*.test.ts -g \"^(?!.*prometheus)\"",
"test-windows": "npm run test-functional-windows && npm run test-system-windows",
"watch": "nodemon -e 'js go' -x 'npm run test-functional'"
},
"author": "snyk.io",
"license": "Apache-2.0",
"dependencies": {
"@snyk/dep-graph": "^1.23.1",
"@snyk/graphlib": "2.1.9-patch.3",
"debug": "^4.1.1",
"lookpath": "^1.2.2",
"snyk-go-parser": "1.13.0",
"tmp": "0.2.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/node": "^6.14.4",
"@types/tmp": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.7.1",
"tap": "^12.6.1",
"tap-only": "0.0.5",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "4.8.4"
}
}