-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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": "zxcvbn-custom-matchers",
"version": "0.0.0",
"description": "Extended matchers for zxcvbn package for passwords validation",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"scripts": {
"prepare": "husky install",
"prepack": "rm -rf dist; tsc -p tsconfig.json",
"test": "mocha tests/**/*.test.ts tests/unit/**/**/*.test.ts",
"test:coverage": "nyc npm run test",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PayU/zxcvbn-custom-matchers.git"
},
"keywords": [
"zxcvbn"
],
"author": "Ilan Kushnir",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@zxcvbn-ts/core": "^4.0.0-beta.2",
"@zxcvbn-ts/language-en": "^3.0.2",
"chai": "^4.5.0",
"depcheck": "^1.4.3",
"eslint": "^8.18.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"nyc": "^17.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@zxcvbn-ts/core": "^4.0.0-beta.2"
}
}