-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 909 Bytes
/
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
{
"name": "internal-dependency-checker",
"version": "1.0.0",
"description": "Repo Dependency Checker",
"main": "./dist/cli.js",
"scripts": {
"build": "tsc",
"help": "./dist/cli.js --help",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"prepare": "husky install"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.8.0"
},
"author": "X-CO Developers",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@co-digital/api-sdk": "^1.0.7",
"@co-digital/logging": "^1.0.2",
"yargs": "^17.7.2"
}
}