73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "@wapython/unionfs",
|
|
"version": "4.5.7",
|
|
"description": "Use multiple `fs` modules in a union.",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"keywords": [
|
|
"fs",
|
|
"file",
|
|
"file system",
|
|
"mount",
|
|
"union",
|
|
"unionfs",
|
|
"many file systems",
|
|
"multiple"
|
|
],
|
|
"files": ["lib/*", "README.md", "package.json"],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/sagemathinc/unionfs"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"test": "jest",
|
|
"test-watch": "jest --watch",
|
|
"test-coverage": "jest --coverage",
|
|
"semantic-release": "semantic-release",
|
|
"prettier": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js}\"",
|
|
"prettier:diff": "prettier -l \"src/**/*.{ts,js}\"",
|
|
"typecheck": "tsc -p ."
|
|
},
|
|
"dependencies": {
|
|
"fs-monkey": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "^6.0.1",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/npm": "^9.0.1",
|
|
"@types/jest": "^28.1.2",
|
|
"@types/node": "^11.15.54",
|
|
"jest": "^28.1.1",
|
|
"memfs": "^3.4.4",
|
|
"memory-fs": "^0.5.0",
|
|
"prettier": "^2.7.1",
|
|
"semantic-release": "^19.0.3",
|
|
"source-map-support": "^0.5.21",
|
|
"ts-jest": "^28.0.5",
|
|
"ts-node": "^10.8.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": ["ts", "tsx", "js", "jsx"],
|
|
"testEnvironment": "node",
|
|
"transformIgnorePatterns": [],
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
"testMatch": ["**/src/__tests__/**/*.ts?(x)"]
|
|
},
|
|
"release": {
|
|
"verifyConditions": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/git"
|
|
],
|
|
"prepare": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/git"
|
|
]
|
|
}
|
|
}
|