UNPKG

ak-tools

Version:

AK's collections of useful things... a comprehensive utility toolbelt for JavaScript/TypeScript projects

65 lines (64 loc) 1.57 kB
{ "name": "ak-tools", "version": "1.1.1", "description": "AK's collections of useful things... a comprehensive utility toolbelt for JavaScript/TypeScript projects", "main": "index.js", "types": "index.d.ts", "exports": { ".": { "types": "./index.d.ts", "import": "./esm/index.mjs", "require": "./index.js" } }, "files": [ "index.js", "index.d.ts", "esm/", "README.md" ], "scripts": { "test": "jest --watch", "test:ci": "jest --no-watch", "prepublishOnly": "npm run build && npm run typecheck && npm run test:ci", "dev": "nodemon --inspect scratch.js", "clean": "rm -rf ./tmp/* ./esm/", "docs": "node generate-docs.js", "typecheck": "tsc --noEmit", "types": "tsc", "build": "npm run clean && npm run build:esm && npm run types", "build:esm": "node scripts/build-esm.js", "post": "npm publish --access public" }, "repository": { "type": "git", "url": "git+https://github.com/ak--47/ak-tools.git" }, "type": "commonjs", "keywords": [ "utilities", "toolbelt", "functional", "typescript", "node.js", "browser", "arrays", "objects", "validation", "files", "logging", "maths" ], "author": "AK <ak@mixpanel.com>", "license": "ISC", "bugs": { "url": "https://github.com/ak--47/ak-tools/issues" }, "homepage": "https://github.com/ak--47/ak-tools#readme", "devDependencies": { "jest": "^29.0.1", "jsdoc-to-markdown": "^7.1.1", "nodemon": "^2.0.19", "typescript": "^5.9.2" } }