-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.25 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.25 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
73
74
75
76
77
{
"name": "@ialopezg/db",
"version": "1.0.5",
"description": "Database Management with ORM and CLI utilities",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"type": "module",
"files": [
"dist/",
"package.json",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
"prebuild": "echo 'Running pre-build tasks...' && npm run clean",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"coverage": "npm test -- --coverage",
"prepare": "husky",
"release": "standard-version",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"keywords": [],
"author": "Isidro Lopez",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.22.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"codecov": "^3.8.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-n": "^17.16.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.5.0",
"rimraf": "^6.0.1",
"rollup": "^4.36.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"tsc --noEmit --skipLibCheck"
]
}
}