-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
27 lines (27 loc) · 949 Bytes
/
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
{
"name": "algorand_restricted_token",
"version": "0.1.0",
"description": "Restricted token definition and deployment for the Algorand blockchain",
"main": "index.js",
"author": "CoMakery, Inc. and Algorand Foundation",
"license": "AGPL",
"private": true,
"scripts": {
"dev:start": "./bin/start-devnet.sh",
"dev:stop": "goal network stop -r devnet && goal kmd stop -d devnet/Primary",
"all:stop": "pgrep algod | xargs kill && pgrep kmd | xargs kill",
"test": "export ALGOSMALLLAMBDAMSEC=\"200\" && bin/start-devnet.sh && jest -i",
"test:debug": "export ALGOSMALLLAMBDAMSEC=\"200\" && bin/start-devnet.sh && node --inspect node_modules/.bin/jest --runInBand"
},
"dependencies": {
"algod": "^1.0.0",
"algosdk": "^1.8.0",
"dotenv": "^8.2.0",
"jest": "^24.9.0",
"json-bigint": "^1.0.0",
"shelljs": "^0.8.3",
"tweetnacl": "^1.0.2",
"wait-on": "^4.0.0",
"yargs": "^16.1.1"
}
}