forked from tschaub/mock-fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1 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
{
"name": "mock-fs-require-fix",
"description": "Fork of the tschaub/mock-fs project.",
"version": "1.0.1",
"main": "lib/index.js",
"homepage": "https://github.com/Slayer95/mock-fs",
"contributors": [
"Tim Schaub (http://tschaub.net/)",
"Leonardo Julca (https://github.com/Slayer95/)"
],
"keywords": [
"mock",
"fs",
"test",
"fixtures",
"file system",
"memory"
],
"repository": {
"type": "git",
"url": "git://github.com/Slayer95/mock-fs.git"
},
"bugs": {
"url": "https://github.com/Slayer95/mock-fs/issues"
},
"license": "MIT",
"scripts": {
"pretest": "eslint benchmarks lib test",
"test": "mocha --recursive test",
"bench": "bench benchmarks"
},
"devDependencies": {
"bench-it": "0.4.0",
"chai": "3.5.0",
"eslint": "2.13.0",
"eslint-config-tschaub": "6.0.0",
"mocha": "3.1.2",
"rimraf": "2.5.4"
},
"dependencies": {
"rewire": "2.5.2",
"semver": "5.3.0"
},
"directories": {
"test": "test"
}
}