-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 KB
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
{
"name": "funciones-basicas",
"version": "2.1.13",
"description": "Funciones Basicas para proyectos simples",
"main": "lib/core.js",
"types": "lib/core.d.ts",
"module": "lib/core.js",
"exports": {
".": {
"require": "./lib/core.js",
"import": "./lib/core.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"lint": "tslint -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.tsx\"",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Scerutti/funciones-basicas"
},
"keywords": [
"react",
"utilidades"
],
"author": "Sebastián Cerutti <softsys95@gmail.com> (https://www.sebastiancerutti.website)",
"license": "MIT",
"files": [
"lib/**/*"
],
"dependencies": {
"@types/react": "^18.3.11",
"react": "^18.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.1.0",
"typescript": "^5.6.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/Scerutti/funciones-basicas/issues"
},
"homepage": "https://github.com/Scerutti/funciones-basicas"
}