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