-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.69 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@fabrix/spool-broadcast",
"version": "1.6.103",
"description": "Spool: broadcast for Fabrix to implement CQRS and Event Sourcing",
"homepage": "https://fabrix.app",
"author": {
"name": "scott-wyatt",
"email": "[email protected]",
"url": "https://cali-style.com"
},
"keywords": [
"html",
"broadcast",
"CQRS",
"event-sourcing",
"rabbitMQ",
"postgres",
"sequelize",
"spool",
"fabrix",
"trailjs"
],
"scripts": {
"release": "standard-version",
"build": "tsc -p ./lib/tsconfig.release.json",
"lint": "tslint -p ./lib",
"watch": "tsc -w -p ./lib/tsconfig.release.json",
"test": "npm run clean && npm run lint && npm run build && nyc mocha && npm run test:distributed",
"test:distributed": "npm run clean && npm run lint && npm run build && nyc mocha --opts test-distributed/mocha.opts",
"test:build:docs": "rimraf docs && typedoc --options typedoc.json lib/",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && npm run build",
"clean": "rm -rf dist",
"ci": "cd .. && ci"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"pre-commit": [
"test"
],
"dependencies": {
"@fabrix/regexdot": "^1.0.1",
"@fabrix/spool-errors": "^1.6.2",
"@hapi/joi": "^17.1.0",
"lodash": "^4.17.15",
"primus-emitter": "^3.1.1",
"primus-multiplex": "^3.2.1",
"primus-resource": "^2.0.6",
"primus-rooms": "^3.4.1",
"rabbot": "^2.1.0"
},
"devDependencies": {
"@fabrix/fabrix": "^1.6.4",
"@fabrix/lint": "^1.0.0-alpha.3",
"@fabrix/spool-express": "^1.6.7",
"@fabrix/spool-realtime": "^1.6.6",
"@fabrix/spool-retry": "^1.6.0",
"@fabrix/spool-router": "^1.6.4",
"@fabrix/spool-sequelize": "1.6.18",
"@types/node": "~10.3.4",
"express": "^4.17.1",
"mocha": "^6",
"nyc": "^14.1.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize-cli": "^5.5.1",
"sequelize-hierarchy": "^2.0.4",
"should": "^13.2.3",
"smokesignals": "^3.0.4",
"source-map-support": "^0.5.13",
"standard-version": "^8.0.1",
"supertest": "^3.3.0",
"tslib": "~1.9.0",
"tslint": "~5.14.0",
"tslint-microsoft-contrib": "~6.1.0",
"tsutils": "~3.9.1",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^1.2.0",
"typescript": "~3.3.4000",
"typescript-closure-compiler": "^1.8.11"
},
"peerDependencies": {
"@fabrix/fabrix": "^1.6.4",
"@fabrix/spool-errors": "^1.6.2",
"@fabrix/spool-sequelize": "^1.6.15"
},
"engines": {
"node": ">= 7.6.0 =< 12.4.0",
"npm": ">= 3.10.0"
},
"repository": "[email protected]:fabrix-app/spool-broadcast.git",
"license": "MIT"
}