UNPKG

@secam/pgsql-ast-parser

Version:

Fork of pgsql-ast-parser Simple Postgres SQL parser/modifier for pg-mem

67 lines (66 loc) 1.85 kB
{ "name": "@secam/pgsql-ast-parser", "version": "12.0.1", "description": "Fork of pgsql-ast-parser Simple Postgres SQL parser/modifier for pg-mem", "main": "index.js", "repository": "https://github.com/secam/pgsql-ast-parser", "scripts": { "start": "webpack --config webpack.config.js", "build": "rimraf lib && webpack --config webpack.config.js --prod", "release": "npm run release-node", "release-node": "git diff --exit-code && npm run test && npm run cover && npm run build && cp -r src lib/src && cd lib && npm publish --access=public && cd ..", "typecheck": "tsc --project tsconfig.json --noEmit", "test": "find src -iname '*.spec.ts' | xargs mochapack", "cover": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test" }, "author": "Olivier Guimbal", "license": "MIT", "keywords": [ "postgres", "db", "database", "pg", "sql", "pgsql", "postgresql", "node", "parser", "ast" ], "dependencies": { "moo": "^0.5.2", "nearley": "^2.20.1" }, "devDependencies": { "@types/chai": "^4.2.11", "@types/mocha": "^9.1.1", "@types/moo": "^0.5.9", "@types/nearley": "^2.11.5", "chai": "^4.4.0", "copy-webpack-plugin": "^6.0.3", "cross-env": "^7.0.3", "istanbul-instrumenter-loader": "^3.0.1", "mocha": "^9.2.2", "mochapack": "^2.0.3", "nyc": "^15.1.0", "rimraf": "^3.0.2", "ts-loader": "^8.4.0", "ts-node": "^8.10.2", "typescript": "^4.9.5", "vscode-mocha-hmr": "^1.0.0", "webpack": "^4.47.0", "webpack-cli": "^3.3.12", "webpack-dev-server": "^4.15.1", "webpack-node-externals": "^1.7.2" }, "nyc": { "include": [ "src/**/*.ts" ], "exclude": [ "src/**/*.spec.ts" ], "instrument": false, "sourceMap": false } }