-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 911 Bytes
/
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
{
"name": "cqrs-typescript",
"version": "0.0.9",
"description": "A Typescript friendly library for writing event sourcing or CQRS apps.",
"main": "lib/cqrs-typescript.js",
"keywords" : [
"CQRS",
"Event sourcing",
"Typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewwebber/cqrs-typescript"
},
"scripts": {
"test": "node-debug ./node_modules/grunt-cli/bin/grunt test"
},
"directories" : {
"lib" : "lib",
"test" : "test"
},
"author": "@MrPanigale",
"license": "ISC",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.11.0",
"grunt-typescript": "^0.3.7",
"should": "^4.0.4",
"grunt-cli": "~0.1.13"
},
"dependencies": {
"redis": "~0.10.3",
"async": "~0.9.0"
}
}