-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 989 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
46
47
{
"name": "uuid-base91",
"version": "1.0.7",
"description": "Compression codec for uuid to base91 in less than 20 bytes",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "ava",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanjukim/uuid-base91"
},
"keywords": [
"uuid",
"base91",
"encode",
"decode",
"codec",
"guid",
"uid",
"id",
"RFC4122"
],
"author": {
"name": "Hanju Kim",
"email": "hanjukim@gmail.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hanjukim/uuid-base91/issues"
},
"homepage": "https://github.com/hanjukim/uuid-base91#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/node": "^15",
"ava": "^3",
"typescript": "^4",
"uuid": "^8"
},
"dependencies": {
"node-base91": "^0.3.4"
}
}