-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.01 KB
/
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
37
38
39
40
41
42
43
44
{
"name": "node-crate",
"version": "3.0.0",
"description": "Node.js SQL-driver for CrateDB (crate.io)",
"main": "lib/index.js",
"scripts": {
"test": "standard --format lib/*.js && mocha -t 20000",
"bundle": "browserify -r ./lib/index.js:node-crate > bundle.js",
"fix": "standard --fix lib/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/megastef/node-crate.git"
},
"keywords": [
"CRATE",
"CrateDB",
"crate.io",
"sql",
"driver",
"bigdata",
"elasticsearch alternative",
"driver for scalable data store",
"BLOB storage"
],
"author": "Stefan Thies",
"contributors": [
"Igor Likhomanov",
"Martin Heidegger"
],
"license": "MIT License",
"bugs": {
"url": "https://github.com/megastef/node-crate/issues"
},
"homepage": "http://megastef.github.io/node-crate/",
"dependencies": {
"type-of-is": ">= 3.3.x"
},
"devDependencies": {
"expect": "^29.5.0",
"mocha": "^10.2.0",
"standard": "^17.0.0"
}
}