UNPKG

korefile

Version:

File System API for Local/GitHub.

77 lines (76 loc) 1.65 kB
{ "name": "korefile", "version": "2.1.1", "description": "File System API for Local/GitHub.", "keywords": [ "api", "filesystem", "fs", "github", "local" ], "homepage": "https://github.com/azu/korefile", "bugs": { "url": "https://github.com/azu/korefile/issues" }, "repository": { "type": "git", "url": "https://github.com/azu/korefile.git" }, "license": "MIT", "author": "azu", "files": [ "bin/", "lib/", "src/" ], "main": "lib/index.js", "browser": "lib/browser.js", "types": "lib/index.d.ts", "directories": { "lib": "lib", "test": "test" }, "scripts": { "build": "tsc -p .", "clean": "rimraf lib/", "prepublish": "npm run --if-present build", "test": "mocha \"test/**/*.ts\"", "watch": "tsc -p . --watch", "format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", "prepare": "git config --local core.hooksPath .githooks" }, "husky": { "hooks": { "precommit": "lint-staged" } }, "lint-staged": { "*.{js,jsx,ts,tsx,css}": [ "prettier --write" ] }, "prettier": { "singleQuote": false, "printWidth": 120, "tabWidth": 4, "trailingComma": "none" }, "devDependencies": { "@types/mocha": "^8.2.3", "@types/node": "^16.3.1", "lint-staged": "^11.0.1", "mocha": "^9.0.2", "prettier": "^2.3.2", "rimraf": "^3.0.2", "ts-node": "^10.1.0", "ts-node-test-register": "^10.0.0", "typescript": "^4.3.5" }, "dependencies": { "@octokit/rest": "^18.6.7", "base64-arraybuffer": "^0.2.0", "debug": "^4.3.2", "js-base64": "^3.6.1" } }