UNPKG

opaqueid

Version:

A basic opaque ID generator with support for types and metadata.

55 lines (54 loc) 1.6 kB
{ "name": "opaqueid", "version": "1.2.0", "description": "A basic opaque ID generator with support for types and metadata.", "keywords": [ "id", "base64", "opaque", "opaqueid" ], "main": "lib/opaqueid.js", "types": "lib/opaqueid.d.ts", "author": "Kirk Brauer", "license": "MIT", "files": [ "lib/**/*" ], "scripts": { "build": "tsc -p tsconfig.json", "format": "prettier --write \"src/**/*.ts\"", "document": "typedoc --exclude src/**/*.test.ts --out docs src", "test": "jest --config jestconfig.json", "test:watch": "jest --config jestconfig.json --watch", "test:cov": "jest --config jestconfig.json --coverage", "lint": "eslint ./src/**/*.ts", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/kirkbrauer/opaqueid.git" }, "devDependencies": { "@types/jest": "^24.0.17", "@types/node": "^12.7.1", "@typescript-eslint/eslint-plugin": "^2.21.0", "@typescript-eslint/parser": "^2.21.0", "eslint": "^6.1.0", "eslint-config-airbnb": "^18.0.1", "eslint-plugin-import": "^2.20.1", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.18.3", "eslint-plugin-react-hooks": "^1.7.0", "jest": "^24.8.0", "prettier": "^1.18.2", "ts-jest": "^24.0.2", "typedoc": "^0.15.0", "typescript": "^3.5.3" }, "dependencies": {} }