jql2sql
Version:
Transpiling JQL to SQL
58 lines (57 loc) • 2.26 kB
JSON
{
"name": "jql2sql",
"version": "0.0.14",
"description": "Transpiling JQL to SQL",
"main": "index.js",
"scripts": {
"start": "node ./demo/index.js",
"build:parser": "nearleyc parser/jql_grammer.ne -o parser/jql_grammer.js",
"test": "npm run test:parser && npm run test:transpiler",
"test:parser": "jest --color --detectOpenHandles --verbose --config=./test/parser/jest.config.js",
"test:parser:field": "jest --color --detectOpenHandles --verbose --config=./test/parser/field_jest.config.js",
"test:parser:operator": "jest --color --detectOpenHandles --verbose --config=./test/parser/operator_jest.config.js",
"test:parser:tilde": "jest --color --detectOpenHandles --verbose --config=./test/parser/tilde_jest.config.js",
"test:parser:value": "jest --color --detectOpenHandles --verbose --config=./test/parser/value_jest.config.js",
"test:transpiler": "jest --color --detectOpenHandles --verbose --config=./test/transpiler/jest.config.js",
"test:transpiler:in": "jest --color --detectOpenHandles --verbose --config=./test/transpiler/in_jest.config.js",
"test:transpiler:simple": "jest --color --detectOpenHandles --verbose --config=./test/transpiler/simple_jest.config.js",
"test:transpiler:tilde": "jest --color --detectOpenHandles --verbose --config=./test/transpiler/tilde_jest.config.js",
"test:transpiler:uifield2column": "jest --color --detectOpenHandles --verbose --config=./test/transpiler/uifield2column_test.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jql2sql/jql2sql.git"
},
"keywords": [
"jql",
"sql",
"searching",
"complex searching",
"transpile"
],
"author": {
"name": "ByeongKeon Kim",
"email": "skysign@gmail.com",
"url": "https://github.com/skysign/public"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/jql2sql/jql2sql/issues"
},
"homepage": "https://jql2sql.github.io/",
"dependencies": {
"lodash": "^4.17.21",
"nearley": "^2.20.1"
},
"devDependencies": {
"express": "^4.18.2",
"jest": "^29.3.1",
"jsdoc": "^4.0.0"
}
}