-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "ajv-formats-strong-password",
"version": "1.0.0",
"description": "Easy way to add configurable strong password format to ajv to use in schema validations",
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shane-js/ajv-formats-strong-password.git"
},
"keywords": [
"ajv",
"ajv-formats",
"password"
],
"author": "Shane Hughes",
"license": "MIT",
"bugs": {
"url": "https://github.com/shane-js/ajv-formats-strong-password/issues"
},
"homepage": "https://github.com/shane-js/ajv-formats-strong-password#readme",
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/jest": "^29.5.12",
"ajv": "^8.16.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}