-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
39
40
41
42
43
44
45
46
47
{
"name": "sql-tools",
"description": "olap for sql non-olap engines / and other tools",
"version": "0.1.7",
"author": "Codenautas <codenautas@googlegroups.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codenautas/sql-tools.git"
},
"contributors": [
{
"name": "Emilio Platzer",
"email": "emilioplatzer@gmail.com"
}
],
"main": "bin/sql-tools.js",
"dependencies": {
"type-store": "^0.4.5"
},
"devDependencies": {
"expect.js": "~0.3.1",
"istanbul": "~0.4.5",
"mini-tools": "~1.13.4",
"mocha": "~11.7.5",
"pg-promise-strict": "~1.4.5"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks --globals json4allRegisteredTypes test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks --globals json4allRegisteredTypes test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks --globals json4allRegisteredTypes test/",
"start": "node example/server.js"
},
"files": [
"lib/sql-tools.js",
"index.d.ts"
],
"qa-control": {
"package-verion": "0.0.1",
"run-in": "server",
"type": "lib",
"coverage": 90
}
}