-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.38 KB
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
{
"name": "tezos-utils",
"version": "1.0.0",
"description": "scripts for develop smart contracts in tezos chain using smart-py CLI and taquito",
"main": "index.js",
"scripts": {
"test": "./scripts/commands.js test calculator",
"test:local": "PROTOCOL_NAME=hangzhounet COMPILER=local ./scripts/tezos-utils.js test calculator",
"deploy:local": "PROTOCOL_NAME=local ./scripts/tezos-utils.js deploy calculator",
"deploy:testnet": "PROTOCOL_NAME=hangzhounet ./scripts/tezos-utils.js deploy calculator",
"deploy:mainnet": "PROTOCOL_NAME=telosMainnet ./scripts/tezos-utils.js deploy calculator",
"compile:calculator" :"node scripts/tezos-utils.js compile calculator",
"compile:all" :"node scripts/tezos-utils.js compile all",
"compile:local": "PROTOCOL_NAME=hangzhounet COMPILER=local ./scripts/tezos-utils.js compile calculator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tlacloc/tezos-utils.git"
},
"keywords": [
"tezos"
],
"author": "tlacloc",
"license": "ISC",
"bugs": {
"url": "https://github.com/tlacloc/tezos-utils/issues"
},
"homepage": "https://github.com/tlacloc/tezos-utils#readme",
"dependencies": {
"@taquito/signer": "^11.2.0",
"@taquito/taquito": "^11.2.0",
"commander": "^3.0.2",
"dotenv": "^16.0.0",
"fs-extra": "^10.0.0",
"prompt-sync": "^4.2.0",
"uuid": "^8.3.2"
}
}