-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.71 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
{
"name": "consequent",
"version": "1.2.4",
"description": "An actor based, event-sourcing library",
"main": "src/index.js",
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"test": "./node_modules/mocha/bin/mocha --harmony spec/**/*.spec.js",
"coverage": "nyc npm test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/arobson/consequent"
},
"keywords": [
"actor",
"event sourcing",
"event sourced"
],
"author": "Alex Robson",
"contributors": [
{
"name": "Alex Robson",
"url": "https://github.com/arobson"
}
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/arobson/consequent/issues"
},
"homepage": "https://github.com/arobson/consequent",
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"proxyquire": "^1.8.0",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0",
"standard": "^16.0.4",
"standard-version": "^9.3.2"
},
"dependencies": {
"basejump": "^1.1.0",
"bole": "^4.0.0",
"debug": "^4.3.4",
"farmhash": "^3.2.2",
"fauxdash": "^1.7.3",
"fount": "^1.1.5",
"globulesce": "^1.0.1",
"haberdasher": "^1.0.0",
"node-flakes": "^1.1.0",
"pluralize": "^8.0.0",
"postal": "^2.0.6",
"rebuild": "^0.1.2",
"vectorclock": "^0.0.0"
},
"standard": {
"env": [
"mocha"
],
"globals": [
"_",
"proxyquire",
"sinon",
"should",
"expect",
"harnessFactory",
"sortBy"
]
}
}