-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
37 lines (37 loc) · 936 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
31
32
33
34
35
36
37
{
"name": "websocket-nats",
"version": "0.3.3",
"description": "An in-browser websocket client for [NATS](http://nats.io/), a lightweight, high-performance cloud native messaging system.",
"keywords": [
"websocket",
"websockets",
"ws",
"nats",
"browser"
],
"license": "MIT",
"author": {
"name": "Josh Glendenning",
"email": "[email protected]"
},
"main": "index.js",
"repository": "isobit/websocket-nats",
"scripts": {
"build": "webpack && npm run build:prod && npm run build:dev",
"build:prod": "NODE_ENV=prod webpack",
"build:dev": "NODE_ENV=dev webpack",
"version": "npm run build && git add -A dist",
"push": "git push && git push --tags && npm publish"
},
"browser": {
"crypto": "./lib/crypto.js",
"net": "./lib/net.js",
"tls": "./lib/tls.js"
},
"devDependencies": {
"webpack": "^1.13.0"
},
"dependencies": {
"nuid": "^0.6.8"
}
}