-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 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
{
"name": "rutility",
"version": "1.0.16",
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"prettier-format": "prettier --config .prettierrc \"{src,test}/**/*.ts\" --write",
"test:unit": "jest",
"test:coverage": "npx jest --coverage --collectCoverageFrom='src/**/*.ts'",
"test:lint": "eslint --fix",
"test": "npm run test:unit & npm run test:coverage & npm run test:lint & npm run prettier-format",
"build": "tsc --project tsconfig.json"
},
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"author": "Pedro Yanez <wotanCode> (https://github.com/wotanCode)",
"license": "MIT",
"description": "A JavaScript library for validating and formatting Chilean RUTs (Rol Único Tributario). It provides functions to add/remove dots and dashes, validate formats, and calculate check digits",
"repository": {
"type": "git",
"url": "git+https://github.com/wotanCode/RUTility.git"
},
"homepage": "https://github.com/wotanCode/RUTility#README.md",
"keywords": [
"rutility",
"rut",
"chilean dni",
"chilean rut",
"rut utils",
"validar",
"rut",
"identificación",
"chile",
"node"
],
"devDependencies": {
"@babel/parser": "^7.25.0",
"@babel/types": "^7.25.0",
"@eslint/js": "^9.8.0",
"coverage": "^0.4.1",
"eslint": "^8.57.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0",
"undici-types": "^6.19.4"
}
}