92 lines
2.2 KiB
JSON
92 lines
2.2 KiB
JSON
{
|
|
"name": "@cowasm/memfs",
|
|
"version": "3.5.1",
|
|
"description": "In-memory file-system with Node's fs API.",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": ["lib"],
|
|
"scripts": {
|
|
"clean": "rimraf lib types",
|
|
"build": "tsc && cp src/getBigInt.js lib/",
|
|
"tsc": "tsc -w",
|
|
"test": "jest --maxWorkers 8",
|
|
"test:coverage": "jest --coverage",
|
|
"test:watch": "jest --watch",
|
|
"watch": "watch \"npm run build\" ./src",
|
|
"prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"",
|
|
"prettier:diff": "prettier -l \"src/**/*.{ts,js}\"",
|
|
"prepublishOnly": "npm run clean && npm run build && npm run test",
|
|
"tslint": "tslint \"src/**/*.ts\" -t verbose"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/sagemathinc/memfs-js.git"
|
|
},
|
|
"dependencies": {
|
|
"fs-monkey": "^1.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.1",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/npm": "^9.0.1",
|
|
"@types/jest": "^29.2.0",
|
|
"@types/node": "^18.11.5",
|
|
"husky": "^8.0.1",
|
|
"jest": "^29.2.2",
|
|
"prettier": "^2.7.1",
|
|
"pretty-quick": "^3.1.3",
|
|
"rimraf": "^3.0.2",
|
|
"semantic-release": "^19.0.3",
|
|
"ts-jest": "^29.0.3",
|
|
"ts-node": "^10.8.1",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-common": "^1.6.0",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "git-cz"
|
|
}
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": ["ts", "tsx", "js", "jsx"],
|
|
"testEnvironment": "node",
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$"
|
|
},
|
|
"engines": {
|
|
"node": ">= 4.0.0"
|
|
},
|
|
"release": {
|
|
"verifyConditions": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/git"
|
|
],
|
|
"prepare": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/git"
|
|
]
|
|
},
|
|
"license": "Unlicense",
|
|
"keywords": [
|
|
"fs",
|
|
"filesystem",
|
|
"fs.js",
|
|
"memory-fs",
|
|
"memfs",
|
|
"file",
|
|
"file system",
|
|
"mount",
|
|
"memory",
|
|
"in-memory",
|
|
"virtual",
|
|
"test",
|
|
"testing",
|
|
"mock"
|
|
]
|
|
}
|