-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 946 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 946 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
38
39
40
41
42
43
{
"name": "json-sql-query",
"version": "2.0.0",
"description": "Use CRUD operations on JSON with SQL queries.",
"main": "index.js",
"types": "typings/index.d.ts",
"scripts": {
"test": "cd test && node index.js",
"format": "prettier --write */**"
},
"author": "Snowflake107",
"license": "MIT",
"dependencies": {
"node-sql-parser": "^3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevSnowflake/json-sql-query.git"
},
"keywords": [
"JSQL",
"SQL",
"Database",
"JavaScript",
"JSON",
"JSONSQL",
"sql-to-json",
"json-to-sql",
"nosql-to-sql",
"sql-to-nosql",
"simple-sql",
"sql2json",
"json2sql",
"json.sqlite"
],
"bugs": {
"url": "https://github.com/DevSnowflake/json-sql-query/issues"
},
"homepage": "https://github.com/DevSnowflake/json-sql-query#readme",
"devDependencies": {
"prettier": "^2.2.1"
}
}