-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
30 lines (30 loc) · 861 Bytes
/
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
{
"name": "resilient-websocket",
"version": "1.0.11",
"description": "A client WebSocket wrapper with support for reconnection and ping/pong",
"main": "dist/ResilientWebSocket.js",
"types": "dist/ResilientWebSocket.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc -p tsconfig.build.json",
"test": "mocha \"src/**/*spec.*s*\" --require ts-node/register --reporter dot"
},
"author": "Marc McIntyre <[email protected]>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "latest",
"mocha": "^6.0.2",
"testdouble": "^3.11.0",
"testdouble-timers": "^0.1.1",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
}
}