1
0
Fork 0
forked from svrjs/svrjs
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs/node_modules/hexoid/package.json

42 lines
834 B
JSON
Raw Permalink Normal View History

2023-07-29 20:33:28 +02:00
{
2024-08-26 08:36:01 +02:00
"name": "hexoid",
"version": "1.0.0",
"repository": "lukeed/hexoid",
"description": "A tiny (190B) and extremely fast utility to generate random IDs of fixed length",
"unpkg": "dist/index.min.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "hexoid.d.ts",
"license": "MIT",
2023-07-29 20:33:28 +02:00
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=8"
},
2024-08-26 08:36:01 +02:00
"scripts": {
"build": "bundt",
"pretest": "npm run build",
"test": "tape -r esm test/*.js | tap-spec"
},
2023-07-29 20:33:28 +02:00
"files": [
"*.d.ts",
"dist"
],
"keywords": [
"id",
"uid",
"uuid",
"random",
"generate"
],
2024-08-26 08:36:01 +02:00
"devDependencies": {
"bundt": "1.0.0",
"esm": "3.2.25",
"tap-spec": "5.0.0",
"tape": "4.9.1"
}
2023-07-29 20:33:28 +02:00
}