-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
64 lines (64 loc) · 1.52 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "hashicon",
"version": "0.3.0",
"description": "hashicon for the cryptoniacs",
"main": "dist/hashicon.cjs.js",
"module": "dist/hashicon.esm.js",
"browser": "dist/hashicon.umd.js",
"unpkg": "dist/hashicon.umd.js",
"devDependencies": {
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-livereload": "^1.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.1"
},
"scripts": {
"test": "echo \"*** TODO TESTS ***\"",
"clean": "rm -rf dist",
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -c -w --sourcemap",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"files": [
"dist"
],
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ETCDEVTeam/hashicon.git"
},
"keywords": [
"hash",
"icon",
"avatar",
"identicon",
"generate",
"generator",
"visual",
"canvas",
"ethereum classic",
"crypto"
],
"author": "Richard Schumann <schumanncombo@gmail.com> (http://schumanncombo.com)",
"contributors": [
{
"name": "Oori | Pluggable",
"url": "http://github.com/oori"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ETCDEVTeam/hashicon/issues"
},
"homepage": "https://ETCDEVTeam.github.io/hashicon/examples/",
"engines": {
"node": ">=8"
},
"dependencies": {
"js-sha3": "^0.8.0"
}
}