-
-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.35 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.35 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "memfs-monorepo",
"version": "4.57.2",
"private": true,
"description": "In-memory file-system with Node's fs API.",
"keywords": [
"fs",
"filesystem",
"fs.js",
"memory-fs",
"memfs",
"file",
"file system",
"mount",
"memory",
"in-memory",
"virtual",
"test",
"testing",
"mock",
"fsa",
"file system access",
"native file system"
],
"homepage": "https://github.com/streamich/memfs",
"repository": {
"type": "git",
"url": "https://github.com/streamich/memfs.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/streamich"
},
"license": "Apache-2.0",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"scripts": {
"clean": "rimraf lib coverage typedocs gh-pages && yarn workspaces foreach -Apt run clean",
"build": "yarn workspaces foreach -Apt run build",
"typecheck": "yarn workspaces foreach -Apt run typecheck",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "jest --maxWorkers 2",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"tslint": "tslint \"src/**/*.ts\" -t verbose",
"watch": "watch \"npm run build\" ./src",
"coverage": "yarn test --collectCoverage",
"build:pages": "npx rimraf@5.0.5 gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testEnvironment": "node",
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^24.5.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"packageManager": "yarn@4.12.0",
"workspaces": [
"packages/*"
]
}