-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "rebirthdbts",
"version": "2.4.0-beta.1",
"description": "Experimental RebirthDB TypeScript driver",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "ts-mocha -p ./tsconfig.test.json --check-leaks -t 60000 ./test/*.ts",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"proto": "pbjs -t static-module -w commonjs -o src/proto/ql2.js src/proto/ql2.proto && pbts -o src/proto/ql2.d.ts src/proto/ql2.js && ts-node ./generate-enums"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronzeidman/rebirthdbts.git"
},
"author": "Ron Zeidman",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronzeidman/rebirthdbts/issues"
},
"homepage": "https://github.com/ronzeidman/rebirthdbts#readme",
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.3.1",
"@types/semver": "^5.5.0",
"coveralls": "^3.0.1",
"iterall": "^1.2.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"protobufjs": "^6.8.6",
"semver": "^5.5.0",
"ts-mocha": "^1.2.0",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {}
}