-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
72 lines (72 loc) · 1.88 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
{
"name": "requirements",
"version": "2.0.2",
"license": "MIT",
"author": "chimurai",
"homepage": "https://github.com/chimurai/requirements",
"bugs": {
"url": "https://github.com/chimurai/requirements/issues"
},
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/chimurai/requirements.git"
},
"keywords": [
"requirements",
"software",
"version",
"checker"
],
"engines": {
"node": "^18.0.0 || ^20.0.0 || >= 22.0.0"
},
"type": "module",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist"
],
"bin": {
"requirements": "bin/requirements.js"
},
"scripts": {
"clean": "rm -rf dist coverage tsconfig.tsbuildinfo",
"build": "tsc --build",
"lint": "prettier --check \"**/*.{js,ts,md}\" || echo '🔧 Run: \"npm run lint:fix\" to fix issues'",
"lint:fix": "prettier --write \"**/*.{js,ts,md}\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"prepare": "husky",
"prepack": "yarn clean && yarn test && yarn build",
"gitignore:update": "curl -L https://www.toptal.com/developers/gitignore/api/node --silent > .temp && cat tools/dotgitignore | cat - .temp > .gitignore && rm .temp"
},
"lint-staged": {
"**/*.{js,ts,md}": [
"prettier --write"
]
},
"dependencies": {
"binary-version": "^7.1.0",
"chalk": "^5.0.0",
"log-symbols": "7.0.0",
"semver": "^7.5.2",
"table": "^6.7.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@types/yargs": "17.0.33",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.4.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}