-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 1.65 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
{
"name": "kalm",
"private": true,
"version": "7.0.0",
"description": "The socket optimizer",
"main": "packages/kalm/bin/kalm.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "yarn workspaces run test && yarn run test:integration",
"test:integration": "jest ./tests/integration --forceExit",
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"bench": "node ./scripts/benchmarks"
},
"funding": {
"type": "Open Collective",
"url": "https://opencollective.com/kalm"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/kalm/kalm.js.git",
"directory": "packages/kalm"
},
"author": "frederic charette <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kalm/kalm-js/issues"
},
"homepage": "https://kalm.js.org",
"contributors": [
"frederic charette <[email protected]>"
],
"typings": "./types.d.ts",
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": [
"ts-jest", {
"diagnostics": false,
"isolatedModules": true
}]
}
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"socket.io": "^4.6.0",
"socket.io-client": "^4.6.0",
"ts-jest": "^29.0.0",
"typescript": "^4.9.0"
}
}