-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.34 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.34 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
78
79
{
"name": "@piggly/mysql",
"version": "1.2.1",
"description": "An ESM/CommonJS library following Oriented-Object Programming pattern to manager a MySQL connection.",
"scripts": {
"check": "tsc --noEmit",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .ts --ignore-path .gitignore --fix src",
"test": "cross-env NODE_ENV=test jest --coverage --watchAll",
"test:once": "cross-env NODE_ENV=test jest",
"test:debug": "cross-env NODE_ENV=test node --inspect ./node_modules/.bin/jest --runInBand",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run format && npm run lint",
"prepare": "npm run build"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"mysql",
"database"
],
"author": {
"name": "Caique Araujo",
"email": "caique@piggly.com.br",
"url": "https://github.com/caiquearaujo"
},
"license": "MIT",
"homepage": "https://github.com/piggly-dev/js-mysql#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/piggly-dev/js-mysql.git"
},
"bugs": {
"url": "https://github.com/piggly-dev/js-mysql/issues"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@piggly/ddd-toolkit": "^1.2.0",
"@piggly/event-bus": "^2.0.0",
"mysql2": "^3.6.2"
}
}