-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
69 lines (69 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
63
64
65
66
67
68
69
{
"name": "snyk-scm-contributors-count",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"bin": {
"snyk-scm-contributors-count": "dist/index.js"
},
"dependencies": {
"ansi-regex": "^5.0.1",
"base-64": "^1.0.0",
"bottleneck": "^2.19.5",
"chalk": "^4.1.2",
"debug": "^4.3.4",
"node-fetch": "^2.6.7",
"ora": "^5.4.1",
"prettier": "^2.6.2",
"snyk-request-manager": "1.8.3",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/base-64": "^1.0.0",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.0",
"@types/node-fetch": "^2.6.1",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"mock-stdin": "^1.0.0",
"nock": "^13.2.4",
"snyk": "^1.1236.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"scripts": {
"build": "tsc",
"build-watch": "tsc -w",
"format:check": "prettier --check '{''{src,test}/!(fixtures)/**/*,*}.{js,ts,json,yml}'",
"format": "prettier --write '{''{src,test}/!(fixtures)/**/*,*}.{js,ts,json,yml}'",
"lint": "npm run format:check && npm run lint:eslint",
"lint:eslint": "eslint --cache '{src,test}/**/*.ts'",
"test": "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'",
"pkg-binaries": "npx pkg . -t node14-linux-x64,node14-macos-x64,node14-win-x64 --out-path ./dist/binaries"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk-tech-services/snyk-scm-contributors-count.git"
},
"author": "Snyk Tech Services",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin",
"dist"
],
"pkg": {
"scripts": [
"dist/**/*.js"
]
}
}