UNPKG

pgsql-deparser

Version:
56 lines (55 loc) 1.67 kB
{ "name": "pgsql-deparser", "version": "17.8.0", "author": "Dan Lynch <pyramation@gmail.com>", "description": "PostgreSQL AST Deparser", "main": "index.js", "module": "esm/index.js", "types": "index.d.ts", "homepage": "https://github.com/launchql/pgsql-parser", "license": "SEE LICENSE IN LICENSE", "publishConfig": { "access": "public", "directory": "dist" }, "repository": { "type": "git", "url": "https://github.com/launchql/pgsql-parser" }, "bugs": { "url": "https://github.com/launchql/pgsql-parser/issues" }, "scripts": { "copy": "copyfiles -f ../../LICENSE README.md package.json dist", "clean": "rimraf dist", "prepare": "npm run build", "build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy", "build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy", "kitchen-sink": "npm run fixtures && npm run fixtures:kitchen-sink", "fixtures:kitchen-sink": "ts-node scripts/make-kitchen-sink.ts", "fixtures:ast": "ts-node scripts/make-fixtures-ast.ts", "fixtures:sql": "ts-node scripts/make-fixtures-sql.ts", "fixtures": "ts-node scripts/make-fixtures.ts", "fixtures:upstream-diff": "ts-node scripts/make-upstream-diff.ts", "lint": "eslint . --fix", "test": "jest", "test:watch": "jest --watch" }, "keywords": [ "sql", "postgres", "postgresql", "pg", "query", "ast", "deparser", "database" ], "devDependencies": { "libpg-query": "17.5.2" }, "dependencies": { "@pgsql/types": "^17.6.1" }, "gitHead": "785243803d4759f52f8fbe24cc8c0a0b99ba9b11" }