1 | {
|
2 | "name": "mock-fs",
|
3 | "description": "A configurable mock file system. You know, for testing.",
|
4 | "version": "5.4.1",
|
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 | "files": [
|
28 | "lib"
|
29 | ],
|
30 | "scripts": {
|
31 | "lint": "eslint benchmarks lib test tasks",
|
32 | "pretest": "npm run lint",
|
33 | "test": "mocha --recursive test"
|
34 | },
|
35 | "eslintConfig": {
|
36 | "extends": "tschaub",
|
37 | "parserOptions": {
|
38 | "ecmaVersion": 2020
|
39 | },
|
40 | "env": {
|
41 | "es2020": true
|
42 | },
|
43 | "rules": {
|
44 | "prettier/prettier": [
|
45 | "error",
|
46 | {
|
47 | "endOfLine": "auto",
|
48 | "singleQuote": true,
|
49 | "bracketSpacing": false,
|
50 | "quoteProps": "preserve"
|
51 | }
|
52 | ]
|
53 | }
|
54 | },
|
55 | "devDependencies": {
|
56 | "chai": "^4.3.4",
|
57 | "eslint": "^8.21.0",
|
58 | "eslint-config-tschaub": "^14.1.2",
|
59 | "mocha": "^10.7.3",
|
60 | "rimraf": "^6.0.1",
|
61 | "semver": "^7.3.5"
|
62 | },
|
63 | "engines": {
|
64 | "node": ">=12.0.0"
|
65 | }
|
66 | }
|