-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
63
64
65
66
67
68
{
"name": "@designliquido/lincones-mysql",
"description": "Implementação de LinConEs para MySQL.",
"version": "0.0.2",
"main": "index.js",
"author": "Leonel Sanches da Silva",
"contributors": [
{
"name": "Leonel Sanches da Silva",
"url": "https://www.linkedin.com/in/leonelsanchesdasilva/"
},
{
"name": "Italo Brito Brandão",
"url": "https://github.com/ItaloCobains"
},
{
"name": "Samuel Renan Gonçalves Vaz",
"url": "https://www.linkedin.com/in/samuel-renan-goncalves-vaz/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/DesignLiquido/lincones-mysql/issues"
},
"homepage": "https://github.com/DesignLiquido/lincones-mysql#readme",
"scripts": {
"empacotar": "rimraf ./dist && yarn tsc && yarn copyfiles -V ./bin/lincones-mysql ./bin/lincones-mysql.cmd ./dist && yarn copyfiles -V ./README.md ./dist",
"formatacao-prettier": "prettier --config .prettierrc *.ts --write",
"publicar-npm": "npm publish ./dist --access public",
"lint": "eslint . --ext .ts",
"testes-unitarios": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DesignLiquido/lincones-mysql.git"
},
"bin": {
"lincones-mysql": "./bin/lincones-mysql"
},
"keywords": [
"lincones",
"sql",
"mysql"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"copyfiles": "^2.4.1",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/mysql": "^2.15.26",
"dotenv": "^16.4.5",
"mysql": "^2.18.1",
"mysql2": "^3.11.3",
"prettier": "^3.3.3"
}
}