-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
50 lines (50 loc) · 1.44 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
{
"name": "password-validator",
"version": "5.3.0",
"description": "Validates password according to flexible and intuitive specifications",
"main": "src/index.js",
"types": "typings/index.d.ts",
"scripts": {
"docs": "node_modules/.bin/jsdoc ./src/*.js ./package.json -t ./node_modules/docdash -R README.md -d ./docs -r",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test:unit": "mocha tests/*.test.js",
"test": "npm run lint && npm run test:unit",
"types": "tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir typings",
"coverage": "nyc --reporter=lcovonly --reporter=text npm run test:unit",
"codecov": "npm run coverage && codecov",
"start": "node index.js"
},
"engines": {
"node": ">=8.10.0"
},
"keywords": [
"password",
"validator",
"rules",
"schema",
"validation",
"check",
"match"
],
"author": "Tarun Batra <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tarunbatra/password-validator.git"
},
"bugs": {
"url": "https://github.com/tarunbatra/password-validator/issues"
},
"homepage": "https://github.com/tarunbatra/password-validator#readme",
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.8.1",
"docdash": "^1.2.0",
"eslint": "^7.13.0",
"jsdoc": "^3.6.10",
"mocha": "^8.2.1",
"nyc": "^15.1.0"
}
}