-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
111 lines (111 loc) · 2.86 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
108
109
110
111
{
"name": "pwned",
"version": "10.0.1",
"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",
"check-types": "tsc",
"clean": "rimraf lib coverage",
"format": "prettier --cache --write .",
"lint": "eslint .",
"husky:install": "husky install",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"prebuild": "npm run --silent clean",
"prepublishOnly": "run-p --silent lint check-types test build",
"prepare": "npm run --silent husky:install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"private": false,
"publishConfig": {
"access": "public"
},
"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": "^14.13.1 || >=16.0.0"
},
"dependencies": {
"common-tags": "^1.8.2",
"conf": "^10.1.2",
"fs-extra": "10.1.0",
"hibp": "^11.0.0",
"ora": "^6.1.0",
"prettyjson": "^1.2.5",
"source-map-support": "^0.5.21",
"yargs": "^17.4.1"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/parser": "7.20.3",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "2.25.2",
"@types/common-tags": "1.8.1",
"@types/debug": "4.1.7",
"@types/node": "16.18.3",
"@types/prettyjson": "0.0.30",
"@types/ws": "8.5.3",
"@types/yargs": "17.0.13",
"@vitest/coverage-c8": "0.25.2",
"@wkovacs64/prettier-config": "3.0.2",
"babel-plugin-add-import-extension": "1.6.0",
"c8": "7.12.0",
"codecov": "3.8.3",
"cross-env": "7.0.3",
"eslint": "8.28.0",
"eslint-plugin-wkovacs64": "13.17.0",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"msw": "0.49.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.9.3",
"vitest": "0.25.2"
}
}