-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.01 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
{
"name": "@dazejs/websocket-provider",
"version": "3.0.1",
"description": "websocket support for dazejs",
"main": "dist/index.js",
"scripts": {
"start": "npm run dev",
"dev": "cross-env DAZE_ENV=dev DEBUG=dubbo-provider:* nodemon --signal SIGTERM --exec ts-node src/index.ts --source-map --preserve-symlinks",
"build": "npm run clear && tsc",
"clear": "rimraf dist/*",
"watch": "tsc -w",
"prod": "cross-env DAZE_ENV=prod node dist/index.js",
"test": "jest --verbose --runInBand --forceExit",
"test:coverage": "jest --runInBand --forceExit --coverage",
"example": "cross-env DAZE_ENV=prod DEBUG=websocket-provider:* nodemon --signal SIGTERM --exec ts-node example/index.ts --source-map --preserve-symlinks",
"commitlint": "commitlint -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dazejs/websocket-provider.git"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/dazejs/websocket-provider/issues"
},
"homepage": "https://github.com/dazejs/websocket-provider#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.15.0"
},
"peerDependencies": {
"@dazejs/framework": ">=5.0.0",
"reflect-metadata": ">=0.1.12"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@dazejs/framework": "^5.0.1",
"@types/jest": "25.1.4",
"@types/node": "13.9.2",
"@types/socket.io": "2.1.4",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"commitlint": "8.3.5",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"husky": "4.2.3",
"jest": "25.1.0",
"nodemon": "2.0.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"socket.io-client": "2.3.0",
"ts-jest": "25.2.1",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"dependencies": {
"socket.io": "2.3.0"
}
}