forked from zabertech/js-swampyer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "swampyer",
"version": "1.2.1",
"description": "A lightweight WAMP client implementing the WAMP v2 basic profile",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"author": "Zaber Technologies Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zaberTech/js-swampyer"
},
"bugs": {
"url": "https://github.com/zaberTech/js-swampyer/issues"
},
"homepage": "https://github.com/zaberTech/js-swampyer",
"keywords": [
"websocket",
"wamp",
"pubsub",
"rpc"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"lint": "eslint --config .eslintrc.js \"src/**/*.{js,ts}\"",
"gen-docs": "typedoc --out docs --excludePrivate --disableSources src src/transports/transport.ts src/transports/websocket_json.ts"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.1.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.2.5",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.8",
"typescript": "^4.4.3"
}
}