-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 1.19 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
{
"name": "bigtable-client",
"version": "0.25.0",
"description": "Convenience wrapper, batteries included, for @google-cloud/bigtable",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/yildizdb/bigtable.git",
"author": "Rian Josua Masikome <rj@masiko.me>",
"license": "MIT",
"dependencies": {
"@google-cloud/bigtable": "~1.0.1",
"debug": "~4.1.1",
"murmurhash": "^0.0.2"
},
"devDependencies": {
"@types/debug": "~4.1.1",
"@types/murmurhash": "^0.0.1",
"@types/node": "~11.9.4",
"mocha": "~6.0.0",
"tslint": "~5.12.1",
"typescript": "~3.3.3"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "yarn lint && rm -rf dist/ && tsc -p tsconfig.json",
"_start": "DEBUG=yildiz:bigtable:* node dist/example/index.js",
"start": "yarn build && yarn _start",
"lint": "tslint -c tslint.json '**/*.ts'",
"lint-fix": "tslint -c tslint.json '**/*.ts' --fix",
"test": "yarn build && ./node_modules/.bin/_mocha --recursive --timeout 30000 --exit -R spec test/int",
"test:debug": "yarn build && DEBUG=yildiz:* ./node_modules/.bin/_mocha --recursive --timeout 30000 --exit -R spec test/int"
}
}