-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"author": {
"name": "Alexandre Roba"
},
"name": "cqrsjs",
"description": "Build CQRS application with JavaScript",
"version": "0.0.3",
"private": false,
"repository": {
"type": "git",
"url": "[email protected]:AlexandreRoba/cqrsjs.git"
},
"keywords": [
"cqrs",
"eventstore",
"ddd",
"eventsourcing"
],
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">= v0.6.15"
},
"dependencies": {
"underscore": "~1.5.2"
},
"devDependencies": {
"grunt": "~0.4.2",
"mocha": "~1.17.1",
"should": "~3.1.2",
"assert": "~1.1.1",
"expect.js": "~0.2.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-cli": "~0.1.13",
"grunt-mocha": "~0.4.10",
"grunt-typescript": "~0.2.7",
"grunt-contrib-clean": "~0.5.0",
"typescript": "~0.9.5",
"grunt-mocha-test": "~0.9.0",
"grunt-push-release": "~0.1.1",
"grunt-changelog": "~0.1.4"
},
"scripts": {
"test": "./node_modules/grunt-cli/bin/grunt travis"
}
}