forked from KSDaemon/wampy.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "wampy",
"version": "6.2.2",
"description": "Simple WAMP (WebSocket Application Messaging Protocol) Javascript implementation",
"author": "Konstantin Burkalev <KSDaemon@ya.ru> (http://ksdaemon.ru)",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-plugin-istanbul": "^5.1.4",
"babelify": "^10.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"eslint": "^6.0.0",
"grunt": "^1.0.4",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.5.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"karma": "^4.1.0",
"karma-browserify": "^6.0.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": "^5.0.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"nyc": "^14.1.1",
"puppeteer": "^1.18.0"
},
"main": "dist/wampy.js",
"dependencies": {
"msgpack5": "^4.2.1",
"wampy-cra": "^0.1.1",
"websocket": "^1.0.28"
},
"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_ENV=test nyc ./node_modules/mocha/bin/mocha --exit --require @babel/register -R spec",
"test:node-no-crossbar": "NODE_ENV=test nyc ./node_modules/mocha/bin/mocha --exit --require @babel/register -R spec 'test/!(wampy-crossbar)-test.js'",
"test:browser": "node ./node_modules/karma/bin/karma start karma.conf.js",
"cover": "nyc report"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"include": [
"src/**/*.js"
],
"report-dir": "./coverage",
"temp-dir": "./coverage",
"reporter": [
"lcov",
"text-summary",
"html"
]
}
}