memfs 3.5.2 → 3.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +63 -63
package/package.json
CHANGED
|
@@ -1,30 +1,82 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memfs",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.3",
|
|
4
4
|
"description": "In-memory file-system with Node's fs API.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"fs",
|
|
7
|
+
"filesystem",
|
|
8
|
+
"fs.js",
|
|
9
|
+
"memory-fs",
|
|
10
|
+
"memfs",
|
|
11
|
+
"file",
|
|
12
|
+
"file system",
|
|
13
|
+
"mount",
|
|
14
|
+
"memory",
|
|
15
|
+
"in-memory",
|
|
16
|
+
"virtual",
|
|
17
|
+
"test",
|
|
18
|
+
"testing",
|
|
19
|
+
"mock"
|
|
20
|
+
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/streamich/memfs.git"
|
|
24
|
+
},
|
|
25
|
+
"license": "Unlicense",
|
|
5
26
|
"main": "lib/index.js",
|
|
6
27
|
"types": "lib/index.d.ts",
|
|
7
28
|
"files": [
|
|
8
29
|
"lib"
|
|
9
30
|
],
|
|
10
31
|
"scripts": {
|
|
11
|
-
"clean": "rimraf lib types",
|
|
12
32
|
"build": "tsc -p . && cp src/getBigInt.js lib/",
|
|
33
|
+
"clean": "rimraf lib types",
|
|
34
|
+
"prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"",
|
|
35
|
+
"prettier:diff": "prettier -l \"src/**/*.{ts,js}\"",
|
|
13
36
|
"test": "jest --maxWorkers 2",
|
|
14
37
|
"test:coverage": "jest --coverage",
|
|
15
38
|
"test:watch": "jest --watch",
|
|
16
|
-
"watch": "watch \"npm run build\" ./src",
|
|
17
|
-
"prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"",
|
|
18
|
-
"prettier:diff": "prettier -l \"src/**/*.{ts,js}\"",
|
|
19
39
|
"tslint": "tslint \"src/**/*.ts\" -t verbose",
|
|
20
|
-
"typecheck": "tsc -p ."
|
|
40
|
+
"typecheck": "tsc -p .",
|
|
41
|
+
"watch": "watch \"npm run build\" ./src"
|
|
21
42
|
},
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
43
|
+
"commitlint": {
|
|
44
|
+
"extends": [
|
|
45
|
+
"@commitlint/config-conventional"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"config": {
|
|
49
|
+
"commitizen": {
|
|
50
|
+
"path": "git-cz"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"release": {
|
|
54
|
+
"prepare": [
|
|
55
|
+
"@semantic-release/changelog",
|
|
56
|
+
"@semantic-release/npm",
|
|
57
|
+
"@semantic-release/git"
|
|
58
|
+
],
|
|
59
|
+
"verifyConditions": [
|
|
60
|
+
"@semantic-release/changelog",
|
|
61
|
+
"@semantic-release/npm",
|
|
62
|
+
"@semantic-release/git"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"jest": {
|
|
66
|
+
"moduleFileExtensions": [
|
|
67
|
+
"ts",
|
|
68
|
+
"tsx",
|
|
69
|
+
"js",
|
|
70
|
+
"jsx"
|
|
71
|
+
],
|
|
72
|
+
"testEnvironment": "node",
|
|
73
|
+
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$",
|
|
74
|
+
"transform": {
|
|
75
|
+
"^.+\\.tsx?$": "ts-jest"
|
|
76
|
+
}
|
|
25
77
|
},
|
|
26
78
|
"dependencies": {
|
|
27
|
-
"fs-monkey": "^1.0.
|
|
79
|
+
"fs-monkey": "^1.0.4"
|
|
28
80
|
},
|
|
29
81
|
"devDependencies": {
|
|
30
82
|
"@semantic-release/changelog": "^6.0.1",
|
|
@@ -44,59 +96,7 @@
|
|
|
44
96
|
"tslint-config-common": "^1.6.0",
|
|
45
97
|
"typescript": "^4.7.4"
|
|
46
98
|
},
|
|
47
|
-
"config": {
|
|
48
|
-
"commitizen": {
|
|
49
|
-
"path": "git-cz"
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
"commitlint": {
|
|
53
|
-
"extends": [
|
|
54
|
-
"@commitlint/config-conventional"
|
|
55
|
-
]
|
|
56
|
-
},
|
|
57
|
-
"jest": {
|
|
58
|
-
"moduleFileExtensions": [
|
|
59
|
-
"ts",
|
|
60
|
-
"tsx",
|
|
61
|
-
"js",
|
|
62
|
-
"jsx"
|
|
63
|
-
],
|
|
64
|
-
"testEnvironment": "node",
|
|
65
|
-
"transform": {
|
|
66
|
-
"^.+\\.tsx?$": "ts-jest"
|
|
67
|
-
},
|
|
68
|
-
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$"
|
|
69
|
-
},
|
|
70
99
|
"engines": {
|
|
71
100
|
"node": ">= 4.0.0"
|
|
72
|
-
}
|
|
73
|
-
"release": {
|
|
74
|
-
"verifyConditions": [
|
|
75
|
-
"@semantic-release/changelog",
|
|
76
|
-
"@semantic-release/npm",
|
|
77
|
-
"@semantic-release/git"
|
|
78
|
-
],
|
|
79
|
-
"prepare": [
|
|
80
|
-
"@semantic-release/changelog",
|
|
81
|
-
"@semantic-release/npm",
|
|
82
|
-
"@semantic-release/git"
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
|
-
"license": "Unlicense",
|
|
86
|
-
"keywords": [
|
|
87
|
-
"fs",
|
|
88
|
-
"filesystem",
|
|
89
|
-
"fs.js",
|
|
90
|
-
"memory-fs",
|
|
91
|
-
"memfs",
|
|
92
|
-
"file",
|
|
93
|
-
"file system",
|
|
94
|
-
"mount",
|
|
95
|
-
"memory",
|
|
96
|
-
"in-memory",
|
|
97
|
-
"virtual",
|
|
98
|
-
"test",
|
|
99
|
-
"testing",
|
|
100
|
-
"mock"
|
|
101
|
-
]
|
|
101
|
+
}
|
|
102
102
|
}
|