-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 898 Bytes
/
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
{
"author": "Adrian Garcia Estaun",
"name": "passcode-validator",
"description": "Validate passwords and numeric codes",
"keywords": [
"validation",
"password",
"passcode",
"PIN",
"numeric password",
"input field validation"
],
"version": "1.0.0",
"license": "MIT",
"main": "src/index.ts",
"homepage": "https://github.com/agestaun/passcode-validator",
"scripts": {
"build": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"pack": "npm pack"
},
"devDependencies": {
"@types/jest": "29.2.2",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"@vitest/coverage-c8": "0.25.3",
"eslint": "8.27.0",
"jest": "29.3.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4",
"vitest": "0.25.3"
}
}