-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 925 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "hexoid",
"version": "2.0.0",
"repository": "lukeed/hexoid",
"description": "A tiny (190B) and extremely fast utility to generate random IDs of fixed length",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "[email protected]",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "node bin/build",
"test": "uvu test -r esm -i collisions"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"id",
"uid",
"uuid",
"random",
"generate"
],
"devDependencies": {
"esm": "3.2.25",
"terser": "4.8.0",
"uvu": "0.5.3"
}
}