-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
42 lines (42 loc) · 944 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
{
"name": "ksuid",
"version": "3.0.0",
"description": "Node.js implementation of K-Sortable Globally Unique IDs",
"engine": {
"node": ">=12 <13 || >=14 <15 || >=16"
},
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"base62.js"
],
"scripts": {
"test": "standard && tsd && c8 ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/novemberborn/ksuid.git"
},
"keywords": [
"uuid",
"ksuid"
],
"author": "Mark Wubben (https://novemberborn.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/novemberborn/ksuid/issues"
},
"homepage": "https://github.com/novemberborn/ksuid#readme",
"dependencies": {
"base-convert-int-array": "^1.0.1"
},
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"@types/node": "^12.20.36",
"ava": "^3.15.0",
"c8": "^7.10.0",
"standard": "^14.3.4",
"tsd": "^0.13.1"
}
}