-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.07 KB
/
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
48
{
"name": "base-n",
"version": "3.0.0",
"description": "generate short and reversible IDs as a replacement for numerical or hex IDs",
"main": "lib/index.js",
"bin": {
"base-n": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonutEspresso/base-n.git"
},
"keywords": [
"id",
"base64",
"base10",
"base-n",
"reversible",
"id",
"shortid",
"tinyid"
],
"author": "Alex Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/DonutEspresso/base-n/issues"
},
"homepage": "https://github.com/DonutEspresso/base-n#readme",
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"conventional-changelog-angular": "^5.0.10",
"conventional-recommended-bump": "^6.0.9",
"coveralls": "^3.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"unleash": "^2.0.2"
},
"dependencies": {
"dashdash": "^1.14.1"
}
}