-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.65 KB
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
{
"name": "@tdengine/websocket",
"version": "3.2.3",
"description": "The websocket Node.js connector for TDengine. TDengine versions 3.3.2.0 and above are recommended to use this connector.",
"source": "index.ts",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"test": "jest --coverage --coverageDirectory=../coverage",
"example": "tsc && node lib/example/basicSql.js",
"build": "tsc",
"prepublish": "node ./prepare.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taosdata/taos-connector-node.git"
},
"keywords": [
"taosdata",
"taos",
"IOT",
"TypeScript",
"TDengine",
"database"
],
"author": "TaosData Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/taosdata/taos-connector-node/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/taosdata/taos-connector-node#readme",
"dependencies": {
"async-mutex": "^0.5.0",
"json-bigint": "^1.0.0",
"moment-timezone": "^0.5.45",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"websocket": "^1.0.34",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@types/jest": "^29.2.1",
"@types/json-bigint": "^1.0.1",
"@types/node": "^18.0.0",
"@types/uuid": "^9.0.8",
"@types/websocket": "^1.0",
"jest": "^29.7.0",
"parcel": "^2.7.0",
"qingwa": "^1.0.7",
"ts-jest": "^29.0.3",
"typescript": "^5.3.3"
}
}