forked from ripper2hl/curp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "curp",
"version": "1.2.3",
"description": "Genera y valida el CURP (Clave Única de Registro de Población) mexicano.",
"homepage": "",
"author": {
"name": "Israel Perales",
"email": "[email protected]",
"url": "https://www.israel-perales.com"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"curp",
"México",
"mexicano"
],
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-config-xo": "^0.43.1",
"jest": "^29.7.0"
},
"engines": {
"npm": ">= 8.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true
}
]
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint . --fix",
"test": "jest",
"coverage": "jest --coverage",
"postinstall": "echo '¡Gracias por instalar la libreria curp! Por favor, considera apoyarnos dejando una reseña en la Play Store y descargar nuestra app para Android: https://play.google.com/store/apps/details?id=com.perales.curpbuscar'"
},
"repository": "ripper2hl/curp",
"jest": {
"testEnvironment": "node"
},
"license": "GPL-3.0"
}