-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·87 lines (87 loc) · 2.45 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
87
{
"name": "@badisi/latest-version",
"version": "7.0.10",
"description": "Get latest versions of packages",
"homepage": "https://github.com/badisi/latest-version",
"license": "MIT",
"author": {
"name": "Badisi"
},
"type": "commonjs",
"main": "index.js",
"typings": "index.d.ts",
"exports": {
".": {
"require": "./index.js",
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"bin": {
"latest-version": "bin/latest-version",
"lv": "bin/latest-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badisi/latest-version.git"
},
"keywords": [
"npm",
"check",
"updates",
"latest",
"current",
"next",
"version",
"pkg",
"package",
"package-json",
"dependencies",
"module"
],
"scripts": {
"ncu": "npx npm-check-updates -i --format=group --packageFile '{,projects/**/}package.json'",
"start": "ts-node --project=./tsconfig.json ./src/cli",
"lint": "eslint .",
"test": "ts-node ./node_modules/jasmine/bin/jasmine.js --config=jasmine.json",
"test:ci": "npm run test",
"build": "node ./build.mjs",
"release": "npm publish ./dist --access public"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@colors/colors": "^1.6.0",
"global-dirs": "3.0.1",
"ora": "^8.1.0",
"registry-auth-token": "^5.0.2",
"semver": "^7.6.3"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.7.9",
"@types/registry-auth-token": "^4.2.4",
"@types/rewire": "^2.5.30",
"@types/semver": "^7.5.8",
"cpy": "^11.1.0",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fs-extra": "^11.2.0",
"globals": "^15.11.0",
"jasmine": "^5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"rewire": "^7.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}