forked from KSDaemon/wampy.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "wampy",
"version": "6.2.0",
"description": "Simple WAMP (WebSocket Application Messaging Protocol) Javascript implementation",
"author": "Konstantin Burkalev <[email protected]> (http://ksdaemon.ru)",
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"grunt": "^1.0.2",
"grunt-babel": "^7.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^3.3.0",
"istanbul": "^1.1.0-alpha.1",
"karma": "^2.0.2",
"karma-browserify": "^5.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "~0.3.7",
"load-grunt-tasks": "^4.0.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.2",
"puppeteer": "^1.4.0"
},
"main": "dist/wampy.js",
"dependencies": {
"msgpack5": "^4.2.0",
"websocket": "^1.0.26"
},
"repository": {
"type": "git",
"url": "git://github.com/KSDaemon/wampy.js.git"
},
"keywords": [
"websocket",
"wamp",
"pubsub",
"rpc"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/KSDaemon/wampy.js/issues"
},
"homepage": "https://github.com/KSDaemon/wampy.js",
"scripts": {
"build": "node ./node_modules/.bin/grunt",
"lint": "node ./node_modules/eslint/bin/eslint src test Gruntfile.js",
"lint:fix": "node ./node_modules/eslint/bin/eslint --fix src test Gruntfile.js",
"test": "npm run test:node && npm run test:browser",
"test:node": "node ./node_modules/mocha/bin/mocha --exit --require babel-core/register -R spec",
"test:node-no-crossbar": "node ./node_modules/mocha/bin/mocha --exit --require babel-core/register -R spec 'test/!(wampy-crossbar)-test.js'",
"test:browser": "node ./node_modules/karma/bin/karma start karma.conf.js",
"cover": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --exit --require babel-core/register -R spec 'test/!(wampy-crossbar)-test.js'"
}
}