-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "dash-assert",
"version": "1.3.1",
"description": "Assertion wrapper around lodash",
"main": "index.js",
"keywords": ["lodash", "assert", "testing"],
"author": "David Von Lehman <https://github.com/dvonlehman>",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov":
"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis":
"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dvonlehman/dash-assert.git"
},
"bugs": {
"url": "https://github.com/dvonlehman/dash-assert/issues"
},
"homepage": "https://github.com/dvonlehman/dash-assert",
"dependencies": {
"lodash.difference": "^4.5.0",
"lodash.every": "^4.6.0",
"lodash.includes": "^4.3.0",
"lodash.intersection": "^4.4.0",
"lodash.isempty": "^4.4.0",
"lodash.iserror": "^3.1.1",
"lodash.ismatch": "^4.4.0",
"lodash.isnan": "^3.0.2",
"lodash.isnull": "^3.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isobject": "^3.0.2",
"lodash.isregexp": "^4.0.1",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.some": "^4.6.0"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^5.0.4"
}
}