forked from Zapper-fi/opepen-standard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 858 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": "opepen-standard",
"version": "1.0.0",
"description": "A tiny library for generating opepen blockies.",
"main": "dist/opepen.js",
"module": "src/opepen.mjs",
"scripts": {
"build": "rollup -f cjs src/opepen.mjs -o dist/opepen.js && minify dist/opepen.js -o dist/opepen.min.js",
"serve-examples": "node --experimental-modules examples/server.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zapper-fi/opepen-standard.gut"
},
"author": "Seb Audet",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zapper-fi/opepen-standard/issues"
},
"homepage": "https://github.com/Zapper-fi/opepen-standard#readme",
"devDependencies": {
"babel-minify": "^0.4.3",
"koa": "^2.5.2",
"koa-static": "^5.0.0",
"rollup": "^0.64.1"
},
"files": [
"src/",
"dist/"
]
}