This repository has been archived by the owner on Aug 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "snyk-disallow",
"description": "Snyk Disallow tool",
"author": "snyk-tech-services",
"bin": {
"snyk-disallow": "dist/index.js"
},
"bugs": "https://github.com/snyk-tech-services/snyk-disallow/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.3.1",
"@snyk/dep-graph": "^1.31.0",
"chalk": "^4.0.0",
"cli-ux": "^5.6.7",
"globby": "^10.0.2",
"snyk-request-manager": "1.8.0",
"tslib": "^1.13.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@types/jest": "^25.2.3",
"@types/node": "^10.17.24",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.1.0",
"ts-node": "8.6.2",
"tsc-watch": "^4.6.2",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/snyk-tech-services/snyk-disallow",
"keywords": [
"oclif"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"oclif": {
"commands": "./dist/commands",
"bin": "snyk-disallow",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "snyk-tech-services/snyk-disallow",
"scripts": {
"format:check": "prettier --check '{''{lib,test}/!(fixtures)/**/*,*}.{js,ts,json,yml}'",
"format": "prettier --write '{''{lib,test}/!(fixtures)/**/*,*}.{js,ts,json,yml}'",
"lint": "npm run format:check && npm run lint:eslint",
"lint:eslint": "eslint --cache '{lib,test}/**/*.ts'",
"test": "npx snyk test && npm run lint && npm run test:unit",
"test:unit": "jest",
"test:coverage": "npm run test:unit -- --coverage",
"test:watch": "tsc-watch --onSuccess 'npm run test:unit'",
"build": "tsc",
"build-watch": "tsc -w",
"prepare": "npm run snyk-protect && npm run build",
"snyk-test": "snyk test",
"snyk-protect": "npx @snyk/protect",
"pkg-binaries": "npx pkg . -t node12-linux-x64,node12-macos-x64,node12-win-x64 --out-path ./dist/binaries"
},
"types": "dist/index.d.ts",
"snyk": true,
"pkg": {
"scripts": [
"dist/**/*.js"
]
}
}