-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 914 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
{
"name": "@victorgraf/hibp-password-filter",
"version": "0.1.0",
"description": "Library for local password filtering based on the HIBP dataset",
"dependencies": {},
"private": true,
"workspaces": [
"cli",
"filters",
"hibp"
],
"scripts": {
"build": "yarn build:filters && yarn build:hibp && yarn build:cli",
"build:cli": "yarn --cwd cli build",
"build:filters": "yarn --cwd filters build",
"build:hibp": "yarn --cwd hibp build",
"test": "jest",
"coverage": "jest --coverage",
"cli": "yarn --silent --cwd cli cli"
},
"keywords": [],
"author": "Victor Graf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nategraf/hibp-password-filter.git"
},
"bugs": {
"url": "https://github.com/nategraf/hibp-password-filter/issues"
},
"homepage": "https://github.com/nategraf/hibp-password-filter#readme"
}