forked from ensdomains/content-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "@ensdomains/content-hash",
"version": "2.5.7",
"description": "simple tool to encode/decode content hash for EIP 1577 compliant ENS Resolvers (fork of pldespaigne/content-hash)",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ensdomains/content-hash"
},
"scripts": {
"build": "browserify ./src/index.js --s contentHash > ./dist/index.js",
"demo": "static .",
"deploy-demo": "echo \"surge demo https://content-hash.surge.sh\"",
"pub": "npm run build && npm publish --access public",
"test": "mocha",
"lint": "npx eslint ."
},
"author": "pldespaigne",
"license": "ISC",
"dependencies": {
"cids": "^1.1.5",
"js-base64": "^3.6.0",
"multicodec": "^3.2.0",
"multihashes": "^2.0.0"
},
"devDependencies": {
"browserify": "^16.5.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"node-static": "^0.7.11"
},
"keywords": [
"ethereum",
"ens",
"eip-1577",
"resolver",
"ipfs",
"swarm",
"content-hash",
"content",
"hash",
"contenthash",
"contentHash"
]
}