-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "teal-interpreter",
"description": "An interpreter for the TEAL assembly language that simulates the Algorand virtual machine.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "ts-node ./src/cli.ts ./examples/test.teal --code-coverage",
"s": "npm run start",
"start:dev": "nodemon",
"sd": "nodemon",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc --incremental",
"bw": "npm run build:watch",
"build:watch": "tsc --incremental --watch",
"prepublishOnly": "npm test && npm run clean && tsc",
"t": "npm run test",
"test": "jest",
"tw": "npm run test:watch",
"test:watch": "jest --watch"
},
"bin": {
"teal": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/optio-labs/teal-interpreter.git"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/optio-labs/teal-interpreter/issues"
},
"homepage": "https://github.com/optio-labs/teal-interpreter#readme",
"dependencies": {
"algosdk": "^1.16.0",
"elliptic": "^6.5.4",
"fs-extra": "^10.0.1",
"hi-base32": "^0.5.1",
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0",
"minimist": "^1.2.5",
"sha3": "^2.1.3"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/elliptic": "^6.4.13",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.24",
"@types/minimist": "^1.2.2",
"@types/node": "^14.17.14",
"@types/superagent": "^4.1.13",
"dedent": "^0.7.0",
"jest": "^26.6.3",
"nodemon": "^2.0.12",
"source-map-support": "0.5.19",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.4.2"
}
}