forked from algorand/js-algorand-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.26 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": "algosdk",
"version": "1.2.0",
"description": "algosdk is Algorand's official javascript SDK",
"main": "index.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git://github.com/bitgo/algosdk-bitgo.git"
},
"dependencies": {
"hi-base32": "^0.5.0",
"js-sha512": "^0.8.0",
"msgpack-lite": "git+https://github.com/algorand/msgpack-lite.git",
"superagent": "^4.1.0",
"tweetnacl": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/cli": "^7.4.4",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/preset-env": "^7.4.2",
"babel-core": "^6.26.3",
"babel-minify": "^0.5.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"common-shakeify": "^0.5.4",
"coveralls": "^3.0.3",
"mocha": "^10.3.0",
"mocha-lcov-reporter": "^1.3.0",
"uglify-js": "^3.5.2",
"watchify": "^3.11.1"
},
"scripts": {
"test": "mocha -R spec tests/",
"build": "browserify src/main.js -s algosdk | minify --simplify --mangle.keepClassName --deadcode.keepFnArgs --mangle.keepFnName --comments false --outFile dist/algosdk.min.js",
"bitgoDist": "babel ./src --out-dir dist/bitgo/"
},
"author": "Algorand, llc",
"license": "MIT"
}