-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 770 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 770 Bytes
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
{
"author": "adrai",
"name": "evented-command",
"version": "1.0.4",
"private": false,
"repository": {
"type": "git",
"url": "git@github.com:adrai/node-evented-command.git"
},
"description": "Project goal is to provide a simple command/event handling for evented systems like cqrs.",
"keywords": [
"cqrs",
"evented",
"ddd",
"dddd",
"eventsourcing",
"command",
"observer",
"event"
],
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">= v0.6.5"
},
"dependencies": {
"dotty": "0.0.2",
"lodash": "4.17.19",
"uuid": "3.0.0"
},
"devDependencies": {
"expect.js": ">=0.3.1",
"mocha": ">=3.x.x"
},
"scripts": {
"test": "mocha --exit"
}
}