-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "ag-sockets",
"version": "11.0.1",
"description": "Library for communication via WebSockets",
"main": "dist/index.js",
"browser": "dist/browser.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Agamnentzar/ag-sockets"
},
"scripts": {
"ts": "npm run clean && tsc --watch --project tsconfig.json",
"test": "mocha --watch --timeout 10000 -R dot dist/test",
"build": "npm run clean && tsc --project tsconfig.json",
"clean": "node clean.js",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepublishOnly": "npm run build"
},
"jspm": {
"main": "dist/browser.js",
"jspmNodeConversion": false,
"dependencies": {}
},
"author": "Agamnentzar",
"license": "MIT",
"keywords": [
"websocket"
],
"peerDependencies": {
"ws": "*"
},
"devDependencies": {
"@clusterws/cws": "^3.0.0",
"@encharm/cws": "^4.4.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/promises-a-plus": "0.0.27",
"@types/sinon": "^9.0.11",
"@types/ws": "^8.5.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"express": "^4.18.1",
"mocha": "^6.2.0",
"sinon": "^14.0.0",
"source-map": "0.8.0-beta.0",
"source-map-support": "^0.5.21",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"ws": "^7.5.8"
}
}