1 | {
|
---|
2 | "name": "memfs",
|
---|
3 | "version": "3.3.0",
|
---|
4 | "description": "In-memory file-system with Node's fs API.",
|
---|
5 | "main": "lib/index.js",
|
---|
6 | "types": "lib/index.d.ts",
|
---|
7 | "files": [
|
---|
8 | "lib"
|
---|
9 | ],
|
---|
10 | "scripts": {
|
---|
11 | "clean": "rimraf lib types",
|
---|
12 | "build": "tsc -p . && cpy src/*.js lib",
|
---|
13 | "test": "jest --maxWorkers 2",
|
---|
14 | "test:coverage": "jest --coverage",
|
---|
15 | "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 | "tslint": "tslint \"src/**/*.ts\" -t verbose"
|
---|
20 | },
|
---|
21 | "repository": {
|
---|
22 | "type": "git",
|
---|
23 | "url": "https://github.com/streamich/memfs.git"
|
---|
24 | },
|
---|
25 | "dependencies": {
|
---|
26 | "fs-monkey": "1.0.3"
|
---|
27 | },
|
---|
28 | "devDependencies": {
|
---|
29 | "@types/jest": "27.0.1",
|
---|
30 | "@types/node": "10.17.60",
|
---|
31 | "cpy-cli": "3.1.1",
|
---|
32 | "husky": "7.0.2",
|
---|
33 | "jest": "27.2.0",
|
---|
34 | "prettier": "2.4.1",
|
---|
35 | "pretty-quick": "3.1.1",
|
---|
36 | "rimraf": "3.0.2",
|
---|
37 | "ts-jest": "27.0.5",
|
---|
38 | "ts-node": "10.2.1",
|
---|
39 | "tslint": "5.20.1",
|
---|
40 | "tslint-config-common": "1.6.0",
|
---|
41 | "typescript": "4.4.3",
|
---|
42 | "semantic-release": "18.0.0",
|
---|
43 | "@semantic-release/changelog": "5.0.1",
|
---|
44 | "@semantic-release/git": "9.0.1",
|
---|
45 | "@semantic-release/npm": "8.0.0"
|
---|
46 | },
|
---|
47 | "config": {
|
---|
48 | "commitizen": {
|
---|
49 | "path": "git-cz"
|
---|
50 | }
|
---|
51 | },
|
---|
52 | "jest": {
|
---|
53 | "moduleFileExtensions": [
|
---|
54 | "ts",
|
---|
55 | "tsx",
|
---|
56 | "js",
|
---|
57 | "jsx"
|
---|
58 | ],
|
---|
59 | "testEnvironment": "node",
|
---|
60 | "transform": {
|
---|
61 | "^.+\\.tsx?$": "ts-jest"
|
---|
62 | },
|
---|
63 | "testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$"
|
---|
64 | },
|
---|
65 | "engines": {
|
---|
66 | "node": ">= 4.0.0"
|
---|
67 | },
|
---|
68 | "release": {
|
---|
69 | "verifyConditions": [
|
---|
70 | "@semantic-release/changelog",
|
---|
71 | "@semantic-release/npm",
|
---|
72 | "@semantic-release/git"
|
---|
73 | ],
|
---|
74 | "prepare": [
|
---|
75 | "@semantic-release/changelog",
|
---|
76 | "@semantic-release/npm",
|
---|
77 | "@semantic-release/git"
|
---|
78 | ]
|
---|
79 | },
|
---|
80 | "license": "Unlicense",
|
---|
81 | "keywords": [
|
---|
82 | "fs",
|
---|
83 | "filesystem",
|
---|
84 | "fs.js",
|
---|
85 | "memory-fs",
|
---|
86 | "memfs",
|
---|
87 | "file",
|
---|
88 | "file system",
|
---|
89 | "mount",
|
---|
90 | "memory",
|
---|
91 | "in-memory",
|
---|
92 | "virtual",
|
---|
93 | "test",
|
---|
94 | "testing",
|
---|
95 | "mock"
|
---|
96 | ]
|
---|
97 | }
|
---|