UNPKG

@a2r/fs

Version:

A2R file system library

64 lines (63 loc) 2.15 kB
{ "name": "@a2r/fs", "version": "1.5.1", "description": "A2R file system library", "main": "./index.js", "types": "./index.d.ts", "engines": { "node": ">=12" }, "scripts": { "build": "tsc", "dev": "NODE_ENV=development ts-node-dev --debug --respawn --transpileOnly ./index.ts", "upload": "npm run build;cd dist;npm i;npm publish --access=public;", "start": "node ./dist/index.js", "lint": "npx eslint --config ./.eslintrc ./**/*.ts", "test": "jest", "test-clear": "rm -rf coverage;rm -rf dist", "test-dev": "NODE_ENV=development npx jest --watch", "test-coverage": "jest --coverage", "test-coverage-dev": "NODE_ENV=development jest --coverage --watchAll", "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls", "test-full": "npm run test-clear;npm run build;npm run test;npm run test-coverage;npm run lint;npm audit;npm run docs", "docs": "jsdoc -c jsdoc.json" }, "repository": { "type": "git", "url": "git+https://github.com/acttoreact/fs.git" }, "keywords": [ "acttoreact", "a2r", "node", "fs", "file system" ], "author": "Act to React (https://a2r.com/)", "license": "MIT", "homepage": "https://a2r.com/", "dependencies": { "rimraf": "^3.0.2" }, "devDependencies": { "@types/jest": "^26.0.23", "@types/node": "^15.0.1", "@types/rimraf": "^3.0.0", "@typescript-eslint/eslint-plugin": "^4.22.0", "@typescript-eslint/parser": "^4.22.0", "babel-jest": "^26.6.3", "coveralls": "^3.0.11", "eslint": "^7.25.0", "eslint-config-airbnb": "^18.2.1", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-react": "^7.23.2", "jest": "^26.6.3", "jsdoc": "^3.6.6", "ts-jest": "^26.5.5", "ts-node-dev": "^1.1.6", "typescript": "^4.2.4", "wait-for-expect": "^3.0.2" } }