-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
107 lines (107 loc) · 2.79 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "pwned",
"version": "12.1.2",
"description": "A command-line tool for querying the 'Have I been pwned?' service.",
"keywords": [
"haveibeenpwned",
"hibp",
"pwned",
"security",
"hack",
"dump",
"breach",
"pastes",
"passwords"
],
"author": {
"name": "Justin Hall",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"type": "module",
"main": "bin/pwned.js",
"bin": "bin/pwned.js",
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"files": [
"bin",
"lib"
],
"scripts": {
"build": "babel src --extensions .js,.ts --out-dir lib --source-maps --ignore \"**/*.test.ts\",\"**/*.test.js\",\"**/__mocks__/\"",
"changeset": "changeset",
"changeset:version": "changeset version && npm install --package-lock-only",
"changeset:publish": "changeset publish",
"typecheck": "tsc",
"clean": "rimraf lib coverage",
"format": "prettier --cache --write .",
"format:check": "prettier --cache --check .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"prebuild": "npm run --silent clean",
"prepublishOnly": "run-p --silent lint typecheck test build"
},
"private": false,
"publishConfig": {
"access": "public"
},
"prettier": "@wkovacs64/prettier-config",
"repository": {
"type": "git",
"url": "https://github.com/wKovacs64/pwned.git"
},
"bugs": {
"url": "https://github.com/wKovacs64/pwned/issues"
},
"homepage": "https://wkovacs64.github.io/pwned",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"common-tags": "^1.8.2",
"conf": "^13.0.1",
"fs-extra": "11.3.0",
"hibp": "^14.1.2",
"ora": "^8.0.1",
"prettyjson": "^1.2.5",
"prompts": "2.4.2",
"source-map-support": "^0.5.21",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.7",
"@babel/parser": "7.26.7",
"@babel/preset-env": "7.26.7",
"@babel/preset-typescript": "7.26.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.12",
"@types/common-tags": "1.8.4",
"@types/debug": "4.1.12",
"@types/node": "22.12.0",
"@types/prettyjson": "0.0.33",
"@types/prompts": "2.4.9",
"@types/ws": "8.5.14",
"@types/yargs": "17.0.33",
"@vitest/coverage-v8": "3.0.4",
"@wkovacs64/eslint-config": "7.5.0",
"@wkovacs64/prettier-config": "4.1.1",
"cross-env": "7.0.3",
"eslint": "9.19.0",
"msw": "2.7.0",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"type-fest": "4.33.0",
"typescript": "5.7.3",
"vitest": "3.0.4"
},
"overrides": {
"typescript": "5.7.3"
}
}