1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"name": "js-eris-web-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p public; cp index.html alice-in-wonderland.txt style.css public/; npx -c 'browserify src/index.js -o public/index.js'",
"watch": "npx -c 'watchify src/index.js -o index.js'"
},
"author": "pukkamustard",
"license": "GPL-3.0-or-later",
"dependencies": {
"browserify": "^16.5.1",
"cids": "^0.8.1",
"ipfs": "^0.46.0",
"js-eris": "file:../..",
"rdf-parse": "^1.3.0",
"streamify-string": "^1.0.1",
"watchify": "^3.11.1"
}
}
|