-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "JsTeal",
"version": "1.0.0",
"description": "TypeScript and JavaScript bindings for Algorand's TEAL contract language based on PyTeal.",
"main": "dist/umd/lib/index.js",
"module": "dist/esm/lib/index.js",
"types": "dist/types",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"dev": "rollup -c -w",
"docs": "typedoc --out docs file src",
"test": "tsc && jasmine-ts",
"lint": "eslint . --ext .ts --ignore-path .gitignore --fix",
"format": "prettier --write \"src/**/*.ts\" \"spec/**/*.ts\"",
"prepublishOnly": "npm test && npm run lint && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"dist"
],
"author": "David Septimus",
"license": "MIT",
"keywords": [],
"devDependencies": {
"@types/jasmine": "3.7.1",
"@types/superagent": "^4.1.11",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.3.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"algosdk": "^1.9.1",
"buffer": "^6.0.3",
"hi-base32": "^0.5.1",
"tslib": "^2.2.0"
}
}