-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 955 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "sql-compiler",
"version": "1.0.2",
"description": "A simple compiler to tokenize, parse and generate SQL code, allowing edit dynamically the query.",
"main": "src/index.mjs",
"scripts": {
"test": "jest",
"start": "node src/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leoelias023/sql-compiler.git"
},
"keywords": [
"sql",
"compiler",
"parser"
],
"author": "Leonardo Elias <leoelias02@hotmail.com>",
"license": "agpl-3.0",
"bugs": {
"url": "https://github.com/leoelias023/sql-compiler/issues"
},
"homepage": "https://github.com/leoelias023/sql-compiler#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "^2.6.0"
},
"engines": {
"node": ">=15.0.0"
}
}