-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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
{
"name": "hashicon-cli",
"version": "1.0.3",
"description": "A simple cli for generating hashicons",
"main": "./dist/index.js",
"scripts": {
"start": "tsc-watch --onSuccess \"hashicon -v\"",
"build": "tsc"
},
"bin": {
"hashicon": "./bin/hashicon-cli.js"
},
"author": "Justin Chase <justin.m.chase@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/justinmchase/hashicon-cli"
},
"keywords": [
"hash",
"icon",
"avatar",
"identicon",
"generate",
"generator",
"visual",
"canvas",
"ethereum classic",
"crypto",
"hashicon",
"cli"
],
"bugs": {
"url": "https://github.com/justinmchase/hashicon-cli/issues"
},
"homepage": "https://github.com/justinmchase/hashicon-cli",
"engines": {
"node": ">=8"
},
"dependencies": {
"canvas": "^2.6.1",
"hashicon": "^0.3.0",
"source-map-support": "^0.5.19",
"typescript": "^3.8.3",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/node": "^12.12.38",
"@types/yargs": "^15.0.4",
"tsc-watch": "^4.2.3"
}
}