-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.22 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.22 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "postre",
"version": "0.0.23",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"module": "dist/index.esm.js",
"bin": {
"postre": "dist/bin.js"
},
"types": "dist/src/index.d.ts",
"author": {
"name": "Diego Stratta",
"email": "strattadb@gmail.com",
"url": "https://diegostratta.com"
},
"homepage": "https://github.com/strattadb/postre",
"scripts": {
"build": "yarn build-lib && yarn build-types",
"build-lib": "cross-env NODE_ENV=production rollup --config rollup.config.js",
"build-types": "tsc --emitDeclarationOnly",
"prebuild": "yarn clean-dist",
"clean-dist": "rimraf dist",
"tsc": "tsc --noEmit",
"lint": "yarn lint:check",
"lint:check": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\"",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "yarn test --onlyChanged --watch",
"test:ci": "yarn test --verbose --ci --coverage",
"test:coverage": "yarn test --coverage",
"test:debug": "cross-env NODE_ENV=test node --inspect-brk=0.0.0.0:9229 --nolazy node_modules/.bin/jest --runInBand",
"upload-coverage": "codecov",
"commit": "commit",
"semantic-release": "semantic-release"
},
"dependencies": {
"@types/pg": "7.14.7",
"colorette": "1.2.1",
"commander": "6.2.0",
"cosmiconfig": "7.0.0",
"debug": "4.3.1",
"ora": "5.1.0"
},
"peerDependencies": {
"pg": "^8.5.1"
},
"devDependencies": {
"@babel/cli": "7.12.8",
"@babel/core": "7.12.9",
"@babel/preset-env": "7.12.7",
"@babel/preset-typescript": "7.12.7",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@rollup/plugin-commonjs": "16.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@rollup/plugin-replace": "2.3.4",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/debug": "4.1.5",
"@types/jest": "26.0.15",
"@types/node": "14.14.10",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"babel-jest": "26.6.3",
"builtin-modules": "3.1.0",
"codecov": "3.8.1",
"cross-env": "7.0.2",
"eslint": "7.14.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-unicorn": "23.0.0",
"husky": "4.3.0",
"jest": "26.6.3",
"lint-staged": "10.5.2",
"pg": "8.5.1",
"prettier": "2.2.1",
"rollup": "2.33.3",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-preserve-shebangs": "0.2.0",
"semantic-release": "17.3.0",
"typescript": "4.1.2"
},
"keywords": [
"postgres",
"postgresql",
"sql",
"query",
"builder",
"pool",
"client",
"node",
"pg"
],
"repository": {
"type": "git",
"url": "https://github.com/strattadb/postre.git"
},
"bugs": {
"email": "dbstratta@gmail.com",
"url": "https://github.com/strattadb/postre/issues"
},
"engines": {
"node": ">= 15.3.0"
}
}