-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
{
"name": "dr-utils",
"version": "1.1.1",
"description": "Set of utilities relevant to the Dominican Republic",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"generate-rnc-cedulas": "ts-node scripts/generate-rnc-cedulas.ts",
"preversion": "npm run lint",
"prepublishOnly": "npm run lint && npm run build",
"postversion": "git push --follow-tags",
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,scripts,tests}/**/*.ts\" --fix",
"test": "jest",
"test:c": "jest --coverage"
},
"keywords": [
"dominican republic",
"republica dominicana",
"dominicano",
"dominicana",
"identification",
"cedula",
"rnc",
"registro nacional de contribuyentes",
"ncf",
"numero de comprobante fiscal",
"phone number",
"telefono",
"numero telefonico",
"validation",
"validacion",
"validator",
"validador",
"formatter",
"formateador",
"utils",
"utilidades"
],
"author": "Miguel Araujo",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/node": "^16.11.38",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-plugin-import": "^2.26.0",
"extract-zip": "^2.0.1",
"got": "^12.1.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}