UNPKG

1.55 kBJSONView Raw
1{
2 "name": "reconnecting-websocket",
3 "version": "3.0.6",
4 "description": "Reconnecting WebSocket",
5 "main": "dist/index.js",
6 "typings": "dist/index.d.ts",
7 "scripts": {
8 "build": "tsc",
9 "build-amd": "tsc -m AMD --outFile ./dist/reconnecting-websocket.amd.js",
10 "test": "nyc --reporter=text-summary --reporter=lcov ava --verbose --serial test/test.js",
11 "clean": "rimraf dist",
12 "report": "nyc report --reporter=html && opn coverage/index.html",
13 "prepublish": "npm run clean && npm run build && npm run build-amd && npm test",
14 "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
15 },
16 "keywords": [
17 "websocket",
18 "client",
19 "reconnecting",
20 "reconnection",
21 "reconnect",
22 "forever",
23 "persistent",
24 "forever",
25 "automatic"
26 ],
27 "author": "Pedro Ladaria <pedro.ladaria@gmail.com>",
28 "license": "MIT",
29 "devDependencies": {
30 "ava": "^0.19.1",
31 "coveralls": "^2.13.1",
32 "eslint": "^3.19.0",
33 "html5-websocket": "^1.0.0",
34 "nyc": "^10.3.2",
35 "opn-cli": "^3.1.0",
36 "rimraf": "^2.5.4",
37 "typescript": "^2.3.2",
38 "ws": "^3.0.0"
39 },
40 "dependencies": {},
41 "directories": {
42 "test": "test"
43 },
44 "repository": {
45 "type": "git",
46 "url": "git+https://github.com/pladaria/reconnecting-websocket.git"
47 },
48 "bugs": {
49 "url": "https://github.com/pladaria/reconnecting-websocket/issues"
50 },
51 "publishConfig": {
52 "registry": "https://registry.npmjs.org"
53 },
54 "homepage": "https://github.com/pladaria/reconnecting-websocket#readme"
55}