-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 845 Bytes
/
package.json
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
{
"name": "js-sql-parse",
"version": "0.2.9",
"description": "A nearley based sql parser and analyzer",
"main": "parser.js",
"dependencies": {
"moo": "^0.3.2",
"nearley": "^2.9.0"
},
"devDependencies": {
"debug": ">=2.6.9",
"diff": ">=3.5.0",
"growl": ">=1.10.0",
"mocha": "^8.2.1"
},
"scripts": {
"compile": "nearleyc ./sql.ne -o sql-parse.js",
"test": "npm run compile && mocha ./test",
"postinstall": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinkenel/js-sql-parse.git"
},
"keywords": [
"js",
"sql",
"parse"
],
"author": "jfkenel@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/justinkenel/js-sql-parse/issues"
},
"homepage": "https://github.com/justinkenel/js-sql-parse#readme"
}