-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 844 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
{
"name": "@whi/identicons",
"version": "0.1.2",
"description": "A javascript library for generating identicon images based on an input seed",
"main": "src/index.js",
"browser": "dist/identicons.bundled.js",
"files": [
"README.md",
"src/index.js",
"src/pseudorandom.js",
"dist/identicons.bundled.js",
"dist/identicons.bundled.js.map"
],
"scripts": {},
"author": "Matthew Brisebois",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mjbrisebois/identicons-js"
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"@whi/weblogger": "^0.1.5"
},
"devDependencies": {
"@whi/json": "^0.1.6",
"@whi/stdlog": "^0.3.4",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"puppeteer": "^18.0.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}