-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.13 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@haroun/cuid-cli",
"version": "3.0.1",
"description": "Get a cuid (collision-resistant id)",
"exports": "./cli.js",
"type": "module",
"scripts": {
"debug": "node --inspect --inspect-brk cli.js",
"test": "node test.js | faucet",
"postversion": "git push && git push --tags",
"pretest": "xo"
},
"repository": {
"type": "git",
"url": "https://github.com/haroun/cuid-cli.git"
},
"keywords": [
"cli-app",
"cli",
"id",
"guid",
"uid",
"unique",
"id",
"uuid"
],
"author": "Harouna Traore",
"license": "MIT",
"bugs": {
"url": "https://github.com/haroun/cuid-cli/issues"
},
"homepage": "https://github.com/haroun/cuid-cli#readme",
"dependencies": {
"cuid": "^2.1.8",
"get-stdin": "^9.0.0",
"meow": "^9.0.0"
},
"devDependencies": {
"execa": "^5.0.0",
"faucet": "0.0.1",
"tape": "^5.2.2",
"xo": "^0.39.1"
},
"bin": {
"cuid": "./cli.js"
},
"files": [
"cli.js"
],
"engines": {
"node": ">=12"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"unicorn/string-content": "off"
}
}
}