forked from ronzeidman/rebirthdbts
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
75 lines (75 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rethinkdb-ts",
"version": "2.6.1",
"description": "RethinkDB TypeScript driver",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"maintainers": [
"Ron Zeidman",
{
"email": "atassikay38@gmail.com",
"name": "Taymuraz Kaytmazov",
"url": "https://github.com/atassis"
}
],
"directories": {
"test": "test"
},
"engines": {
"node": ">=16.x <=20.x"
},
"scripts": {
"prepare": "husky install && tsc",
"build": "tsc",
"lint": "eslint src",
"test": "./scripts/ts-mocha --check-leaks -t 10000 --exit ./test/*.ts",
"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",
"start:dev": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rethinkdb/rethinkdb-ts.git"
},
"author": "Ron Zeidman",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/rethinkdb/rethinkdb-ts/issues"
},
"homepage": "https://github.com/rethinkdb/rethinkdb-ts#readme",
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.2",
"lint-staged": "^13.2.1",
"mocha": "^9.2.2",
"prettier": "^2.7.1",
"protobufjs": "^7.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}