This repository has been archived by the owner on Sep 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.56 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
{
"author": "adrai",
"name": "rule-validator",
"version": "0.3.1",
"private": false,
"main": "index.js",
"engines": {
"node": ">=0.6.0"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"lodash": ">= 2.2.1",
"tv4": ">= 1.0.10"
},
"devDependencies": {
"mocha": ">= 1.0.1",
"expect.js": ">= 0.1.2",
"smoosh": ">= 0.4.1"
},
"description": "Rule-validator is a javascript module based on amanda. And works for node.js and in the browser. It can be very useful if you work with (d)ddd, cqrs, eventsourcing, domain, commands and events, etc.",
"keywords": [
"rule-validator",
"rule",
"json",
"validator",
"amanda",
"cqrs",
"eventsourcing",
"ddd",
"dddd",
"command",
"event",
"domain"
],
"homepage": "https://github.com/adrai/rule-validator",
"repository": {
"type": "git",
"url": "git@github.com:adrai/rule-validator.git"
},
"bugs": {
"url": "https://github.com/adrai/rule-validator/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/adrai/rule-validator/master/licence"
}
],
"scripts": {
"test": "mocha"
},
"testling": {
"browsers": [
"ie/6..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
],
"harness" : "mocha",
"files": "test/*.js"
}
}