-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 898 Bytes
/
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
{
"name": "@raugfer/jazzicon",
"version": "1.0.6",
"description": "Jazzicon SVG Generator",
"keywords": [
"Ethereum",
"Jazzicon",
"SVG",
"Identicons"
],
"main": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"src",
"types"
],
"devDependencies": {
"@types/color": "^3.0.3",
"@types/mersenne-twister": "^1.1.2",
"typescript": "^4.7.3"
},
"dependencies": {
"color": "^4.2.3",
"mersenne-twister": "^1.1.0"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raugfer/jazzicon.git"
},
"author": "raugfer",
"license": "MIT",
"bugs": {
"url": "https://github.com/raugfer/jazzicon/issues"
},
"homepage": "https://github.com/raugfer/jazzicon#readme"
}