generated from curveball/new-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.72 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
{
"name": "@curveball/dugout",
"version": "0.0.6",
"description": "Websocket event server. Build rooms and other multi-user applications",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "make build",
"test": "make lint test",
"tsc": "tsc",
"start": "make start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curveball/dugout.git"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE"
],
"keywords": [
"websocket",
"events",
"event-sourcing",
"chat",
"framework",
"nodejs",
"typescript",
"curveball"
],
"author": "Evert Pot (https://evertpot.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/curveball/dugout/issues"
},
"homepage": "https://github.com/curveball/dugout#readme",
"dependencies": {
"@curveball/accesslog": "^0.2.0",
"@curveball/bodyparser": "^0.4.6",
"@curveball/controller": "^0.2.2",
"@curveball/core": "^0.12.0",
"@curveball/problem": "^0.2.1",
"@curveball/router": "^0.2.4",
"@types/ws": "^7.2.3",
"hal-browser": "^0.8.6",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^10.17.17",
"@types/sinon": "^7.5.2",
"chai": "^4.2.0",
"hal-types": "^0.1.2",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"sinon": "^9.0.1",
"ts-node": "^8.7.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"types": "dist/",
"nyc": {
"extension": [
".ts"
]
},
"mocha": {
"require": "ts-node/register",
"recursive": true,
"extension": [
"ts",
"js",
"tsx"
]
},
"bin": {
"dugout": "./dist/index.js"
}
}