@tealbase/postgres-js
Version:
Isomorphic PostgREST client
56 lines (55 loc) • 1.67 kB
JSON
{
"name": "@tealbase/postgres-js",
"version": "0.18.0",
"description": "Isomorphic PostgREST client",
"keywords": [
"postgrest",
"tealbase"
],
"homepage": "https://github.com/tealbase/postgrest-js",
"bugs": {
"url": "https://github.com/tealbase/postgrest-js/issues"
},
"license": "MIT",
"author": "tealbase",
"files": [
"dist"
],
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tealbase/postgrest-js.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist docs",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "run-s clean format build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "run-s test:db && jest -i",
"test:db": "cd test/db && docker-compose down && docker-compose up -d && sleep 5",
"docs": "typedoc --mode file --target ES6 --theme minimal",
"docs:json": "typedoc --json docs/spec.json --mode modules --includeDeclarations --excludeExternals"
},
"dependencies": {
"isomorphic-unfetch": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node-fetch": "^2.5.7",
"jest": "^26.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"typedoc": "^0.19.1",
"typescript": "^4.0.2"
},
"directories": {
"test": "test"
}
}