-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
66 lines (66 loc) · 1.3 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
{
"name": "mock-fs",
"description": "A configurable mock file system. You know, for testing.",
"version": "5.4.1",
"main": "lib/index.js",
"homepage": "https://github.com/tschaub/mock-fs",
"author": {
"name": "Tim Schaub",
"url": "http://tschaub.net/"
},
"keywords": [
"mock",
"fs",
"test",
"fixtures",
"file system",
"memory"
],
"repository": {
"type": "git",
"url": "git://github.com/tschaub/mock-fs.git"
},
"bugs": {
"url": "https://github.com/tschaub/mock-fs/issues"
},
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"lint": "eslint benchmarks lib test tasks",
"pretest": "npm run lint",
"test": "mocha --recursive test"
},
"eslintConfig": {
"extends": "tschaub",
"parserOptions": {
"ecmaVersion": 2020
},
"env": {
"es2020": true
},
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto",
"singleQuote": true,
"bracketSpacing": false,
"quoteProps": "preserve"
}
]
}
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.21.0",
"eslint-config-tschaub": "^14.1.2",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"semver": "^7.3.5"
},
"engines": {
"node": ">=12.0.0"
}
}