-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "@verkehrsministerium/kraftfahrstrasse",
"version": "0.0.0-development",
"description": "WAMP implementation for TypeScript",
"main": "build/cjs/index.js",
"module": "build/module/index.js",
"types": "build/types/index.d.ts",
"private": false,
"sideEffects": false,
"files": [
"build"
],
"scripts": {
"build": "npm run lint && npm run build:ts",
"build:ts": "npm run build:ts-esm && npm run build:ts-cjs",
"build:ts-esm": "tsc -p tsconfig.module.json",
"build:ts-cjs": "tsc -p tsconfig.cjs.json",
"build:docs": "typedoc --out docs --readme README.md --target esnext --theme default --mode file src --ignoreCompilerErrors",
"lint": "tslint -c tslint.json src/**/*.ts -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"example": "ts-node -r tsconfig-paths/register -P tsconfig.example.json example/$*",
"semantic-release": "semantic-release",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/verkehrsministerium/kraftfahrstrasse.git"
},
"keywords": [
"wamp",
"autobahn",
"websocket"
],
"author": {
"name": "Martin Koppehel",
"email": "[email protected]",
"url": "https://embedded.enterprises"
},
"contributors": [
"Johann Wagner",
"Fin Christensen",
"Marten Gartner",
"Johannes Wünsche"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/verkehrsministerium/kraftfahrstrasse/issues"
},
"homepage": "https://github.com/verkehrsministerium/kraftfahrstrasse#readme",
"dependencies": {
"@types/ws": "^8.2.0",
"msgpack5": "^6.0.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/msgpack5": "^3.4.3",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tslint": "^6.1.2",
"typedoc": "^0.23.27",
"typescript": "^4.9"
}
}