js-sql-parser
Version:
> parse / stringify sql (select grammar) in js.
39 lines (38 loc) • 1.17 kB
JSON
{
"name": "js-sql-parser",
"version": "1.6.0",
"description": "",
"main": "./dist/parser/sqlParser.js",
"scripts": {
"build": "jison -m js ./src/sqlParser.jison -o ./dist/parser/sqlParser.js && npm run build-concat",
"build-concat": "minicat src/stringify.js src/suffix.js >> dist/parser/sqlParser.js",
"test": "npm run build && npm run test:build",
"test:all": "mocha --require babel-register",
"test:build": "mocha --require babel-register test/*.test.js",
"test:benchmark": "mocha --require babel-register test/benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JavaScriptor/js-sql-parser.git"
},
"keywords": [
"js",
"sql-parser"
],
"author": "albin zeng",
"license": "ISC",
"bugs": {
"url": "https://github.com/JavaScriptor/js-sql-parser/issues"
},
"homepage": "https://github.com/JavaScriptor/js-sql-parser#readme",
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"benchmark": "^2.1.3",
"concat": "^1.0.3",
"debug": "^3.1.0",
"jison": "^0.4.17",
"minicat": "^1.0.0",
"mocha": "^3.2.0"
}
}