-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "joi-password-complexity",
"version": "5.2.0",
"description": "Joi validation for password complexity requirements.",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"jsnext:main": "lib/index.es.js",
"scripts": {
"test": "jest",
"lint": "eslint src --ext .js,.ts",
"lint-fix": "yarn lint --fix",
"build": "rimraf ./lib && rollup -c",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamronbatman/joi-password-complexity.git"
},
"peerDependencies": {
"joi": ">= 17"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/jest": "^29.5.3",
"@types/joi": "^17.2.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.6.1",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.6.1",
"joi": "^17.9.2",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.35.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"files": [
"lib/"
],
"keywords": [
"Joi",
"validation",
"password",
"complexity"
],
"author": "Kamron Batman",
"license": "MIT",
"bugs": {
"url": "https://github.com/kamronbatman/joi-password-complexity/issues"
},
"homepage": "https://github.com/kamronbatman/joi-password-complexity#readme",
"packageManager": "[email protected]"
}