-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 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
{
"author": "David Armendáriz",
"name": "identity-number-validator",
"version": "1.1.17",
"description": "Package to validate if an identity number is valid or not",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"check-types": "tsc --noEmit",
"test": "jest",
"coverage": "jest --clearCache && jest --coverage",
"lint": "eslint 'src/**/*.ts'",
"precommit": "yarn check-types && yarn lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavidArmendariz/identity-number-validator.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/DavidArmendariz/identity-number-validator/issues"
},
"homepage": "https://github.com/DavidArmendariz/identity-number-validator#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn coverage"
}
},
"lint-staged": {
"src/**/*.ts": "yarn precommit"
},
"files": [
"lib/**/*"
],
"keywords": [
"ecuador",
"cedula",
"identity"
]
}