-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.08 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.08 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "wampy",
"version": "7.1.0",
"description": "Simple WAMP (WebSocket Application Messaging Protocol) Javascript implementation",
"author": "Konstantin Burkalev <KSDaemon@gmail.com> (https://ksdaemon.com)",
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/register": "^7.18.9",
"babelify": "^10.0.0",
"c8": "^7.14.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.41.0",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^6.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.2.2",
"jsdom": "^21.0.0",
"jsdom-global": "^3.0.2",
"karma": "^6.4.2",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"load-grunt-tasks": "^5.1.0",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"mocha-lcov-reporter": "^1.3.0",
"sinon": "^15.1.0"
},
"main": "dist/wampy.js",
"exports": {
".": {
"import": "./src/wampy.js",
"require": "./dist/wampy.js"
},
"./JsonSerializer.js": {
"import": "./src/serializers/JsonSerializer.js",
"require": "./dist/serializers/JsonSerializer.js"
},
"./CborSerializer.js": {
"import": "./src/serializers/CborSerializer.js",
"require": "./dist/serializers/CborSerializer.js"
},
"./MsgpackSerializer.js": {
"import": "./src/serializers/MsgpackSerializer.js",
"require": "./dist/serializers/MsgpackSerializer.js"
}
},
"type": "module",
"dependencies": {
"cbor-x": "^1.5.3",
"color-json": "^3.0.5",
"msgpackr": "^1.9.5",
"tweetnacl": "^1.0.3",
"wampy-cra": "^0.2.0",
"wampy-cryptosign": "^0.1.0",
"websocket": "^1.0.34",
"ws": "^8.13.0",
"yargs": "^17.7.2"
},
"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"
},
"bin": {
"wampy": "cmd/cli.js"
},
"homepage": "https://github.com/KSDaemon/wampy.js#readme",
"scripts": {
"build": "npx grunt",
"lint": "npx eslint src test Gruntfile.cjs",
"lint:fix": "npm run lint -- --fix",
"test": "npm run test:node && npm run test:browser",
"test:node": "NODE_ENV=test c8 mocha --exit -r @babel/register -r jsdom-global/register -R spec",
"test:node-no-crossbar": "npm run test:node -- -- 'test/!(wampy-crossbar)-test.js'",
"test:node-cli": "npm run test:node -- -- 'test/wampy-cli-*.js'",
"test:crossbar": "npm run test:node -- -- 'test/wampy-crossbar-test.js'",
"test:browser-wrappers": "npm run test:node -- -- 'test/wampy-browser-wrappers-test.js'",
"test:browser": "npx karma start karma.conf.cjs",
"cover": "c8 report",
"publish": "npm run build"
}
}