-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
67 lines (67 loc) · 1.38 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
{
"name": "chai-fs",
"version": "2.0.0",
"description": "Chai assertions for Node.js filesystem",
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
},
"repository": {
"type": "git",
"url": "https://github.com/chaijs/chai-fs.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/chaijs/chai-fs/blob/master/LICENSE-MIT"
}
],
"bugs": {
"url": "https://github.com/chaijs/chai-fs/issues"
},
"keywords": [
"chai",
"chai-plugin",
"vendor",
"fs",
"test",
"assertion",
"assert",
"testing",
"file",
"path",
"filesystem"
],
"main": "lib/index.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"bit-mask": "^1.0.1",
"readdir-enhanced": "^2.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-json-schema": "^1.3.0",
"del": "^3.0.0",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-mocha-test": "^0.13.2",
"jshint-path-reporter": "~0.1",
"mkdirp": "^0.5.0",
"mocha": "^4.0.1",
"mocha-unfunk-reporter": "^0.4.0",
"touch": "^3.1.0",
"underscore": "^1.8.3"
},
"peerDependencies": {
"chai": ">= 1.6.1 < 5"
}
}