forked from algorand/js-algorand-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "algosdk",
"version": "1.16.0",
"description": "The official JavaScript SDK for Algorand",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/browser/algosdk.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git://github.com/algorand/js-algorand-sdk.git"
},
"dependencies": {
"algo-msgpack-with-bigint": "^2.1.1",
"buffer": "^6.0.2",
"hi-base32": "^0.5.1",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"js-sha512": "^0.8.0",
"json-bigint": "^1.0.0",
"superagent": "^6.1.0",
"tweetnacl": "^1.0.3",
"url-parse": "^1.5.1"
},
"devDependencies": {
"@types/json-bigint": "^1.0.0",
"@types/mocha": "^8.2.2",
"@types/superagent": "^4.1.11",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"assert": "^2.0.0",
"chromedriver": "^101.0.0",
"concurrently": "^6.2.0",
"coveralls": "^3.1.0",
"cucumber": "^5.1.0",
"es-abstract": "^1.18.3",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-tsdoc": "^0.2.11",
"express": "^4.17.1",
"geckodriver": "^2.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"mocha": "^9.0.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-http-server": "^1.4.3",
"path-browserify": "^1.0.1",
"prettier": "2.2.1",
"selenium-webdriver": "^4.0.0-beta.4",
"source-map-loader": "^2.0.2",
"ts-loader": "^8.3.0",
"ts-node": "^10.0.0",
"typedoc": "^0.22.13",
"typedoc-plugin-missing-exports": "^0.22.6",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.2.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"scripts": {
"test": "node -r ts-node/register tests/mocha.js",
"prepare": "npm run build",
"prepare-browser-tests": "npm run build && mkdir -p tests/cucumber/browser/build && cp dist/browser/algosdk.min.* tests/cucumber/browser/build/ && webpack --config tests/cucumber/browser/webpack.config.js",
"build": "concurrently \"webpack --config webpack.config.js\" \"tsc -p tsconfig-esm.json\" \"tsc -p tsconfig-cjs.json\"",
"docs": "typedoc src/main.ts --options typedoc.config.json",
"docs:dev": "typedoc src/main.ts --options typedoc.config.json --watch --preserveWatchOutput",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"example": "ts-node"
},
"author": "Algorand, llc",
"license": "MIT"
}