-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 860 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
{
"name": "wyre",
"version": "1.2.1",
"description": "The new way to do websockets",
"repository": "http://github.com/from-nibly/wyre",
"license": "MIT",
"dependencies": {
"jpromise": "1.0.8",
"uuid": "2.0.1",
"ws": "^0.8.1"
},
"browser": "./lib/browser.js",
"main": "./lib/index.js",
"devDependencies": {
"browserify": "8.1.3",
"mocha": "2.1.0",
"open": "0.0.5",
"uglify-js": "2.4.16"
},
"scripts": {
"browserify": "./node_modules/.bin/browserify -r ./lib/browser.js:wyre > ./dist/wyre.js",
"uglify": "./node_modules/.bin/uglifyjs ./dist/wyre.js > ./dist/wyre.min.js",
"prepublish": "npm run browserify && npm run uglify",
"browserTest": "node test/browser/setup.js",
"test": "./node_modules/.bin/mocha -R nyan --recursive test/server"
},
"tonicExampleFilename": "tonicExample.js"
}