-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 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
{
"name": "unexpected-fs",
"version": "3.0.0",
"description": "mock-fs assertion for unexpected",
"main": "index.js",
"scripts": {
"coverage": "istanbul --include-all-sources cover _mocha",
"lint": "eslint .",
"test": "mocha",
"travis": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/unexpectedjs/unexpected-fs.git"
},
"keywords": [
"mock",
"fs",
"mockfs",
"mock-fs",
"unexpected"
],
"author": "Gustav Nikolaj Olsen <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-fs/issues"
},
"homepage": "https://github.com/unexpectedjs/unexpected-fs",
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-onelint": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^5.1.0",
"unexpected": "^10.37.4"
},
"dependencies": {
"lodash": "^4.5.1",
"mock-fs-require-fix": "^1.0.1",
"mountfs": "^0.5.0"
}
}