-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "roachjs",
"version": "0.2.20",
"description": "Node.js driver for cockroachdb.",
"main": "index.js",
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "node ./node_modules/.bin/nodeunit lib/*_test.js",
"build-proto": "npm run-script build-proto-api && echo \"Built proto files to ./lib/proto\"",
"build-proto-api": "./node_modules/protobufjs/bin/proto2js cockroach-proto/cockroach/proto/api.proto -commonjs=\"cockroach.proto\" -path=cockroach-proto/ > ./lib/proto/api.js"
},
"repository": {
"type": "git",
"url": "http://github.com/herenow/roachjs"
},
"keywords": [
"roachjs",
"cockroachdb",
"cockroach",
"driver",
"client"
],
"author": "herenow",
"license": "MIT",
"bugs": {
"url": "https://github.com/herenow/roachjs/issues"
},
"homepage": "https://github.com/herenow/roachjs",
"devDependencies": {
"nodeunit": "~0.9.0"
},
"dependencies": {
"protobufjs": "~3.8.2"
},
"optionalDependencies": {
"microtime": "~1.4.1"
}
}