-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "password-strength-score",
"version": "1.0.4",
"description": "Password strength score checker",
"main": "dist/index.js",
"scripts": {
"check-types": "tsc --noEmit",
"check-types:watch": "yarn check-types --watch",
"lint": "yarn eslint ./src/**/*.{ts,tsx}",
"lint-fix": "yarn lint --fix",
"build": "tsc -d",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"mocha": "^6.2.0",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"typescript": "^3.6.4"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bartlomiejzuber/password-strength-score.git"
},
"keywords": [
"password",
"strength",
"checker",
"indicator",
"tester",
"meter"
],
"author": "Bartlomiej Zuber ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartlomiejzuber/password-strength-score/issues"
},
"homepage": "https://github.com/bartlomiejzuber/password-strength-score#readme"
}