-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.21 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
{
"dependencies": {
"@taquito/signer": "^9.0.0",
"@taquito/taquito": "^9.0.0",
"crypto": "^1.0.1",
"dotenv": "^9.0.0",
"fs": "*",
"yargs": "^17.0.1"
},
"name": "data-integrity-tezos",
"description": "Data integrity on Tezos",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"clean": "rm -rf build",
"compile": "yarn clean && mkdir build && ligo compile-contract contracts/Simple.religo main --output ./build/Simple.michelson",
"originate": "yarn compile && node ./src/main.js originate",
"record": "node ./src/main.js record",
"verify": "node ./src/main.js verify",
"help": "node ./src/main.js --help",
"start-sandbox": "ganache-cli --flavor tezos --seed alice --hardfork florence",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "mkdir -p logs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giwankim/data-integrity-tezos.git"
},
"author": "Giwan Kim",
"license": "MIT",
"bugs": {
"url": "https://github.com/giwankim/data-integrity-tezos/issues"
},
"homepage": "https://github.com/giwankim/data-integrity-tezos#readme",
"devDependencies": {
"ganache-cli": "^6.12.1-tezos.0"
}
}