osr-mono/packages/fs/package.json
2025-01-29 18:17:03 +01:00

71 lines
1.9 KiB
JSON

{
"name": "@plastichub/fs",
"description": "Simplified file system API in Typescript",
"version": "0.13.41",
"typings": "index.d.ts",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@plastichub/core": "^0.2.6",
"denodeify": "^1.2.1",
"errno": "^0.1.4",
"glob": "^10.4.1",
"mime": "^2.0.3",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"progress-stream": "^1.2.0",
"q": "^1.4.1",
"rimraf": "^6.0.1",
"write-file-atomic": "^1.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/denodeify": "^1.2.35",
"@types/glob": "^8.1.0",
"@types/mime": "^2.0.3",
"@types/minimatch": "^3.0.5",
"@types/mkdirp": "^0.5.2",
"@types/node": "^22.12.0",
"chai": "^3.5.0",
"codecov": "^3.8.3",
"fs-extra": "^4.0.3",
"istanbul": "^0.4.5",
"mocha": "^11.1.0",
"mocha-typescript": "^1.1.17",
"ts-node": "^3.3.0",
"tslint": "^5.20.1",
"tslint-presets": "^2.0.0",
"typescript": "^5.7.3"
},
"scripts": {
"test": "tsc; mocha \"spec/**/*.spec.js\"",
"testcp": "tsc;mocha \"spec/copy.spec.js\"",
"testdir": "tsc;mocha \"spec/dir.spec.js\"",
"testrename": "tsc;mocha \"spec/rename.spec.js\"",
"testmove": "tsc;mocha \"spec/move.spec.js\"",
"testremove": "tsc;mocha \"spec/remove.spec.js\"",
"test-with-coverage": "istanbul cover node_modules/.bin/_mocha -- 'spec/**/*.spec.js'",
"lint": "tslint --project=./tsconfig.json",
"build": "tsc -p .",
"typings": "tsc --declaration",
"dev": "tsc -p . --declaration -w",
"dev-test-watch": "mocha-typescript-watch"
},
"homepage": "https://git.polymech.io/plastichub/fs",
"repository": {
"type": "git",
"url": "https://git.polymech.io/plastichub/fs.git"
},
"engines": {
"node": ">= 8.0.0"
},
"license": "BSD-3-Clause",
"keywords": [
"fs",
"file system",
"typescript"
],
"pre-commit": []
}