-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "@opensourcejam/validador-cups",
"version": "0.0.4",
"description": "Validador CUPS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"typecheck": "tsc",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts src",
"formatter": "prettier . --write",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"validador",
"CUPS"
],
"author": "Kemil Beltre",
"license": "MIT",
"homepage": "http://github.com/opensourcejam/validador-cups",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/opensourcejam/validador-cups/blob/main/LICENSE"
}
],
"contributors": [
{
"name": "Kemil Beltre",
"email": "[email protected]",
"url": "https://github.com/kemilbeltre"
},
{
"name": "Eduardo Moratón",
"email": "[email protected]",
"url": "https://github.com/EduardoMoraton"
}
],
"repository": {
"type": "git",
"url": "https://github.com/opensourcejam/validador-cups.git"
},
"dependencies": {
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"prettier": "^3.0.3",
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
}
}