-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.6 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "autobahnTS",
"version": "0.9.9",
"description": "An implementation of The Web Application Messaging Protocol (WAMP).",
"main": "dist/autobahn.js",
"browser": {
"./src/transport/rawsocket": false,
"./src/transport/websocket/websocket-node": false,
"ws": false,
"crypto-js": false
},
"scripts": {
"test": "npm run build-test && npm run run-test",
"build": "npm run compile && npm run bundle && npm run minify",
"run-test": "mocha --timeout 5000 dist/test/test_mocha.js",
"build-test": "npm run build && cd test/browser/ && webpack --config webpack.config.js",
"postinstall": "npm run typings",
"compile": "tsc && cp package.json dist/package.json",
"typings": "typings install && cd test && typings install",
"watch": "tsc -p . --watch",
"minify": "uglifyjs -o dist/browser/autobahn.min.js dist/browser/autobahn.js",
"bundle": "webpack --config webpack.config.js && cp dist/browser/autobahn.js test/browser/"
},
"devDependencies": {
"bufferutil": "^1.2.1",
"chai": "^3.4.1",
"crypto-js": ">= 3.1.5",
"events": "^1.1.0",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"mocha-loader": "^0.7.1",
"nodeunit": "^0.9.1",
"typescript": "^1.7.5",
"typings": "^0.4.1",
"uglify-js": "^2.6.1",
"utf-8-validate": "^1.2.1",
"webpack": "^1.12.12",
"when": ">= 3.7.3",
"ws": ">= 0.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/crossbario/autobahn-js.git"
},
"keywords": [
"WAMP",
"WebSocket",
"RPC",
"PubSub"
],
"author": "Tavendo GmbH",
"license": "MIT"
}