-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "thingsdb.js",
"version": "0.1.2",
"description": "Javascript connector for ThingsDB",
"homepage": "https://github.com/stefanak-michal/thingsdb.js",
"private": false,
"main": "dist/thingsdb.js",
"scripts": {
"test": "jest ./test",
"build": "webpack --mode production",
"dev": "webpack --mode development",
"start": "webpack-dev-server --mode development",
"playwright": "npx playwright test"
},
"keywords": [
"ThingsDB",
"javascript",
"websocket",
"database",
"connectivity"
],
"author": "Michal Stefanak (https://www.linkedin.com/in/michalstefanak/)",
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/michalstefanak"
},
{
"type": "github sponsors",
"url": "https://github.com/sponsors/stefanak-michal"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/stefanak-michal/thingsdb.js.git"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@babel/register": "^7.23.7",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.43.0",
"@types/node": "^20.12.7",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"messagepack": "^1.1.12",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"wait-for-expect": "^3.0.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"websocket": "^1.0.34"
}
}