-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "tinypg",
"version": "8.0.0",
"description": "Easy way to call sql files using postgres.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build-test": "npm run clean && tsc -p src/test",
"build": "npm run clean && tsc",
"clean": "rimraf './dist/' './src/**/*.js' './src/**/*.map'",
"prepare": "npm run build",
"test": "npm run build-test && NODE_ENV=test ./node_modules/mocha/bin/mocha 'src/test/**/*.js' --full-trace -t 15000 $MOCHA_FLAGS --require source-map-support/register --reporter spec",
"test-debugging": "npm run build-test && NODE_ENV=test ./node_modules/mocha/bin/mocha 'src/test/**/*.js' --inspect-brk --no-timeouts --colors --full-trace $MOCHA_FLAGS --require source-map-support/register --reporter spec"
},
"repository": {
"type": "git",
"url": "http://github.com/joeandaverde/tinypg.git"
},
"bugs": {
"url": "https://github.com/joeandaverde/tinypg/issues"
},
"homepage": "http://github.com/joeandaverde/tinypg",
"author": "Joe Andaverde",
"contributors": [
"Alex Munda"
],
"keywords": [
"postgres",
"sql",
"db",
"query"
],
"license": "MIT",
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"@scaleleap/pg-format": "^1.0.0",
"debug": "^4.3.1",
"glob": "^7.1.7",
"lodash": "^4.17.21",
"tinypg-parser": "^1.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/lodash": "4.14.158",
"@types/mocha": "2.2.41",
"@types/node": "^8.10.59",
"@types/pg": "^8.6.0",
"@types/uuid": "^8.3.0",
"chai": "^3.4.1",
"mocha": "^7.1.1",
"pg": "^8.0.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"typescript": "^5.1.3"
},
"peerDependencies": {
"pg": "^8.0.0"
}
}