UNPKG

1.29 kBJSONView Raw
1{
2 "name": "simple-websocket",
3 "description": "Simple, EventEmitter API for WebSockets (browser)",
4 "version": "4.0.1",
5 "author": {
6 "name": "Feross Aboukhadijeh",
7 "email": "feross@feross.org",
8 "url": "http://feross.org/"
9 },
10 "browser": {
11 "ws": false
12 },
13 "bugs": {
14 "url": "https://github.com/feross/simple-websocket/issues"
15 },
16 "dependencies": {
17 "debug": "^2.1.3",
18 "inherits": "^2.0.1",
19 "readable-stream": "^2.0.5",
20 "ws": "^1.0.0"
21 },
22 "devDependencies": {
23 "browserify": "^13.0.0",
24 "standard": "^6.0.4",
25 "tape": "^4.0.0",
26 "uglify-js": "^2.4.15",
27 "zuul": "^3.0.0"
28 },
29 "homepage": "https://github.com/feross/simple-websocket",
30 "keywords": [
31 "simple",
32 "simple websocket",
33 "simple-websocket",
34 "socket",
35 "websocket",
36 "ws"
37 ],
38 "license": "MIT",
39 "main": "index.js",
40 "repository": {
41 "type": "git",
42 "url": "git://github.com/feross/simple-websocket.git"
43 },
44 "scripts": {
45 "build": "browserify -s SimpleWebsocket -r ./ | uglifyjs -c warnings=false -m > simplewebsocket.min.js",
46 "test": "standard && npm run test-node && npm run test-browser",
47 "test-browser": "zuul -- test/*.js",
48 "test-browser-local": "zuul --local -- test/*.js",
49 "test-node": "tape test/*.js"
50 }
51}