UNPKG

1.01 kBJSONView Raw
1{
2 "name": "mock-fs",
3 "description": "A configurable mock file system. You know, for testing.",
4 "version": "4.4.0",
5 "main": "lib/index.js",
6 "homepage": "https://github.com/tschaub/mock-fs",
7 "author": {
8 "name": "Tim Schaub",
9 "url": "http://tschaub.net/"
10 },
11 "keywords": [
12 "mock",
13 "fs",
14 "test",
15 "fixtures",
16 "file system",
17 "memory"
18 ],
19 "repository": {
20 "type": "git",
21 "url": "git://github.com/tschaub/mock-fs.git"
22 },
23 "bugs": {
24 "url": "https://github.com/tschaub/mock-fs/issues"
25 },
26 "license": "MIT",
27 "scripts": {
28 "lint:fix": "eslint --fix benchmarks lib test",
29 "pretest": "eslint benchmarks lib test",
30 "test": "mocha --recursive test",
31 "bench": "bench benchmarks"
32 },
33 "devDependencies": {
34 "bench-it": "0.4.0",
35 "chai": "3.5.0",
36 "eslint": "^3.19.0",
37 "eslint-config-tschaub": "^7.0.0",
38 "mocha": "3.1.2",
39 "rimraf": "2.5.4",
40 "semver": "^5.3.0"
41 },
42 "eslintConfig": {
43 "extends": "tschaub"
44 }
45}