-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.03 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
49
{
"name": "cuidgen",
"description": "A command-line interface to generate collision-resistant ids (CUIDs) optimized for horizontal scaling and performance.",
"version": "1.1.0",
"author": "David Waterston",
"bin": {
"cuidgen": "./bin/run"
},
"bugs": "https://github.com/davidwaterston/cuidgen/issues",
"dependencies": {
"@oclif/command": "^1.5.4",
"@oclif/config": "^1.9.0",
"@oclif/plugin-help": "^2.1.3",
"cuid": "^2.1.4"
},
"devDependencies": {
"@oclif/test": "^1.2.2",
"chai": "^4.1.2",
"eslint": "^5.7.0",
"eslint-config-oclif": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/davidwaterston/cuidgen",
"keywords": [
"cli",
"cuid",
"guid",
"id",
"oclif",
"unique id",
"unique",
"uuid"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"bin": "cuidgen"
},
"repository": "davidwaterston/cuidgen",
"scripts": {}
}