-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "teal-testing-example",
"version": "1.0.0",
"description": "An example of automated testing for TEAL (Algorand) smart contracts.",
"scripts": {
"deploy": "node scripts/deploy.js",
"increment": "node scripts/increment.js",
"decrement": "node scripts/decrement.js",
"show-globals": "node scripts/show-globals.js",
"delete": "node scripts/delete.js",
"test": "npm run test-simulated",
"test:watch": "npm run test-simulated:watch",
"test-simulated": "jest ./test/simulated",
"test-simulated:watch": "jest --watch ./test/simulated",
"test-actual": "jest --runInBand ./test/actual",
"test-actual:watch": "jest --runInBand --watch ./test/actual"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hone-labs/teal-testing-example.git"
},
"keywords": [
"algorand",
"teal",
"smart contract",
"blockchain"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/hone-labs/teal-testing-example/issues"
},
"homepage": "https://github.com/hone-labs/teal-testing-example#readme",
"devDependencies": {
"algosdk": "^1.17.0",
"jest": "^28.1.0",
"minimist": "^1.2.6",
"teal-interpreter": "^0.0.38"
},
"dependencies": {
"ascii-table": "^0.0.9"
}
}