UNPKG

big-int-stats

Version:

Create BigIntStats from fs.Stats for compatiblity on earlier versions of Node.js

59 lines (58 loc) 1.41 kB
{ "name": "big-int-stats", "version": "2.0.1", "description": "Create BigIntStats from fs.Stats for compatiblity on earlier versions of Node.js", "keywords": [ "dirent", "fs.Dirent", "stats", "fs.Stats", "compatibility", "es5" ], "homepage": "https://github.com/kmalakoff/big-int-stats", "repository": { "type": "git", "url": "git@github.com:kmalakoff/big-int-stats.git" }, "license": "MIT", "author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)", "type": "module", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./package.json": "./package.json" }, "main": "dist/cjs/index.js", "types": "dist/cjs/index.d.cts", "scripts": { "build": "tsds build", "deploy": "tsds deploy", "format": "biome check --write --unsafe src/ test/", "test": "tsds test:node --no-timeouts", "test:engines": "nvu engines npm test", "version": "tsds version" }, "dependencies": { "fs-constants": "^1.0.0", "jsbi-compat": "^0.2.2", "normalize-stats": "^1.1.0" }, "devDependencies": { "@types/mocha": "*", "@types/node": "*", "core-js": "*", "fs-generate": "*", "fs-stats-spys": "*", "lodash.isdate": "*", "rimraf2": "*" }, "engines": { "node": ">=0.8" }, "tsds": { "source": "src/index.ts" } }