-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "websocket-ts",
"version": "2.1.5",
"main": "dist/cjs/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"module": "dist/esm/src/index.js",
"license": "MIT",
"keywords": [
"websocket",
"browser",
"client",
"typescript",
"reconnecting",
"buffered"
],
"sideEffects": false,
"repository": {
"url": "github:jjxxs/websocket-ts"
},
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"test": "jest",
"test:coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "cross-env-shell eslint './src/{**/*,*}.{js,ts}' './tests/{**/*,*}.{js,ts}'"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.49.0",
"@types/jest": "^29.5.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"@types/ws": "^8.5.5",
"ws": "^7.0.0",
"cross-env": "^7.0.3"
}
}