-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
86 lines (86 loc) · 2.51 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
80
81
82
83
84
85
86
{
"name": "snyk-delta",
"description": "Prevent feature for CLI tests",
"main": "dist/index.js",
"version": "1.0.0",
"bin": {
"snyk-delta": "dist/index.js"
},
"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 'src/**/*.ts'",
"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 build",
"snyk-test": "snyk test",
"pkg-binaries": "npx pkg . -t node12-linux-x64,node12-macos-x64,node12-win-x64 --out-path ./dist/binaries"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snyk-tech-services/snyk-delta.git"
},
"author": "Snyk Tech Services",
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/snyk-tech-services/snyk-delta",
"dependencies": {
"@snyk/configstore": "^3.2.0-rc1",
"@snyk/dep-graph": "^1.18.1",
"@types/debug": "^4.1.5",
"@types/is-uuid": "^1.0.0",
"app-root-path": "^3.0.0",
"chalk": "^4.0.0",
"debug": "^4.1.1",
"is-uuid": "^1.0.2",
"lodash": "^4.17.15",
"snyk-api-ts-client": "^1.11.2",
"snyk-request-manager": "^1.8.6",
"source-map-support": "^0.5.16",
"terminal-link": "^2.1.1",
"tslib": "^1.10.0",
"yargs": "^16.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "26.0.24",
"@types/lodash": "4.14.182",
"@types/node": "^12.12.31",
"@types/strip-ansi": "5.2.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"axios": "^0.27.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"jest": "^26.6.3",
"jest-mock-process": "^1.4.0",
"mock-stdin": "^1.0.0",
"nock": "^12.0.3",
"prettier": "^1.19.1",
"strip-ansi": "4.0.0",
"ts-jest": "26.5.6",
"ts-node": "8.6.2",
"tsc-watch": "^4.1.0",
"typescript": "^4.9.5"
},
"pkg": {
"scripts": [
"dist/**/*.js",
"./node_modules/snyk-request-manager/node_modules/axios/dist/node/axios.cjs"
]
},
"snyk": true
}