Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JavaScript: Update project metadata file package.json before upload #25

Merged
merged 2 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cratedb_sqlparse_js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 31 additions & 17 deletions cratedb_sqlparse_js/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,35 @@
{
"name": "@cratedb/cratedb-sqlparse",
"version": "0.0.2",
"author": {
"name": "Ivan Sanchez Valencia",
"email": "[email protected]",
"url": "https://github.com/surister"
},
"private": false,
"type": "module",
"license": "Apache-2.0",
"keywords": [
"antlr4",
"antlr4 grammar",
"cratedb",
"grammar",
"sql",
"sql dialect",
"sql grammar",
"sql parser",
"sql parsing"
],
"repository": {
"type": "git",
"url": "https://github.com/crate/cratedb-sqlparse"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
"./dist"
],
"license": "MIT",
"main": "./dist/sqlparse.umd.cjs",
"module": "./dist/sqlparse.js",
"exports": {
Expand All @@ -14,25 +38,15 @@
"require": "./dist/sqlparse.umd.cjs"
}
},
"keywords": [
"sql",
"parse",
"cratedb",
"cratedb-sql",
"parse-cratedb",
"sql-cratedb-dialect",
"sqlparse",
"sql-dialect"
],
"scripts": {
"test": "vitest run",
"build": "vite build"
"dependencies": {
"antlr4": "^4.13.1-patch-1"
},
"devDependencies": {
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"dependencies": {
"antlr4": "^4.13.1-patch-1"
"scripts": {
"test": "vitest run",
"build": "vite build"
}
}