-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
{
"name": "dbm-sql-parse",
"version": "1.0.0",
"description": "MSSQL Parser Library",
"repository": "https://github.com/staticvoidmain/dbm-sql-parse",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tsc && mocha ./dist/test",
"console": "tsc && node ./dist/src/index.js",
"lint": "npm run console lint ./test/mssql/*.sql --verbose --severity=info",
"print": "npm run console print ./test/mssql/kitchen_sink.sql --verbose",
"graph": "npm run console graph ./test/mssql/*.sql"
},
"dependencies": {
"chalk": "^2.4.1",
"glob": "^7.1.2",
"yargs": "^17.5.1"
},
"optionalDependencies": {
"spellchecker": "^3.4.4"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/core-js": "^0.9.42",
"@types/glob": "^5.0.35",
"@types/mocha": "^2.2.40",
"@types/node": "^12",
"@types/yargs": "^11.1.1",
"chai": "^3.5.0",
"mocha": "^10.0.0",
"typescript": "^4.7.2"
},
"author": "Ross Jennings",
"license": "MIT"
}