-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 950 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
{
"name": "@keerifox/nanoidenticons",
"version": "2.0.0",
"description": "A tiny library for generating Nano address identicons.",
"main": "dist/nanoidenticons.js",
"module": "src/nanoidenticons.mjs",
"scripts": {
"build": "rollup -f cjs src/nanoidenticons.mjs -o dist/nanoidenticons.js && minify dist/nanoidenticons.js -o dist/nanoidenticons.min.js",
"serve-examples": "node --experimental-modules examples/server.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keerifox/nanoidenticons.git"
},
"author": "keerifox, Erin Dachtler, Alex Van de Sande",
"license": "MIT",
"bugs": {
"url": "https://github.com/keerifox/nanoidenticons/issues"
},
"homepage": "https://github.com/keerifox/nanoidenticons#readme",
"devDependencies": {
"babel-minify": "^0.4.3",
"koa": "^2.5.2",
"koa-static": "^5.0.0",
"rollup": "^0.64.1"
},
"files": [
"src/",
"dist/"
]
}