-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1009 Bytes
/
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
{
"name": "hybridfs",
"version": "0.1.0",
"description": "Hybrid between memfs and native fs",
"main": "lib/index.js",
"type": "module",
"license": "MIT",
"keywords": [
"fs",
"file",
"file system",
"redirect",
"rewrite",
"link",
"mount",
"linkfs"
],
"repository": {
"type": "git",
"url": "https://github.com/drinking-code/hybridfs.git"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.0.0",
"jest": "^29.0.2"
},
"dependencies": {
"memfs": "^3.4.7",
"unionfs": "^4.4.0"
},
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir lib",
"watch": "babel src --watch --extensions \".js,.ts\" --out-dir lib",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"jest": {
"testPathIgnorePatterns": [
"src"
],
"transform": {}
}
}