-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.1 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
{
"name": "@designliquido/lincones-postgresql",
"description": "Implementação de LinConEs para PostgreSQL.",
"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-postgresql/issues"
},
"homepage": "https://github.com/DesignLiquido/lincones-postgresql#readme",
"scripts": {
"empacotar": "rimraf ./dist && yarn tsc && yarn copyfiles -V ./bin/lincones-postgresql ./bin/lincones-postgresql.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-postgresql.git"
},
"bin": {
"lincones-postgresql": "./bin/lincones-postgresql"
},
"keywords": [
"lincones",
"sql",
"postgresql"
],
"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",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/pg": "^8.11.10",
"dotenv": "^16.4.5",
"pg": "^8.13.0"
}
}