-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 827 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 827 Bytes
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": "human-readable-hash",
"version": "1.0.2",
"description": "Generate human-readable hash strings using adjectives and nouns",
"main": "src/index.js",
"bin": {
"human-hash": "./bin/cli.js"
},
"scripts": {
"test": "mocha test/**/*.js",
"lint": "eslint src/ test/ bin/"
},
"keywords": [
"hash",
"human-readable",
"readable",
"slug",
"identifier",
"words",
"friendly"
],
"author": {
"name": "C Sarath Babu",
"organization": "Qubase",
"role": "Founder"
},
"license": "MIT",
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"mocha": "^10.2.0",
"eslint": "^8.40.0"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/qubasehq/human-readable-hash"
}
}