-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
43 lines (36 loc) · 1.08 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
{
"name": "must",
"version": "0.13.4",
"description": "Testing and assertion library with friendly BDD syntax — awesome.must.be.true(). Many expressive matchers and is test runner and framework agnostic. Follows RFC 2119 with its use of MUST. Good and well tested stuff.",
"keywords": ["assert", "assertion", "bdd", "test", "testing", "rfc2119"],
"homepage": "https://github.com/moll/js-must",
"bugs": "https://github.com/moll/js-must/issues",
"author": {
"name": "Andri Möll",
"email": "andri@dot.ee",
"url": "http://themoll.com"
},
"typings": "./must.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/moll/js-must.git"
},
"licenses" : [{
"type" : "LAGPL",
"url": "https://github.com/moll/js-must/blob/master/LICENSE"
}],
"main": "register.js",
"scripts": {"test": "make test"},
"dependencies": {
"kindof": ">= 2.0.0 < 3",
"egal": ">= 1.3.0 < 2",
"oolong": ">= 1.11.0 < 2",
"lodash.wrap": ">= 3 < 4",
"json-stringify-safe": ">= 5 < 6"
},
"devDependencies": {
"mocha": ">= 2 < 3",
"promise": ">= 7 < 8",
"lodash": ">= 3 < 4"
}
}