forked from pbca26/stellar-ledger-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.09 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
{
"name": "stellar-ledger-api",
"version": "2.0.0",
"description": "Javascript API for communication with the Stellar Ledger App",
"repository": {
"type": "git",
"url": "https://github.com/lenondupe/stellar-ledger-api.git"
},
"main": "./src/index.js",
"scripts": {
"browserify": "browserify --standalone StellarLedger --outfile browser/stellar-ledger-api.js src/index-browserify.js",
"browserify-test": "browserify --standalone runScript --outfile test/runScript-browser.js test/runScript.js",
"uglify": "uglifyjs -o browser/stellar-ledger-api.min.js browser/stellar-ledger-api.js",
"script": "node test/runScript.js",
"clean": "rm -f browser/stellar-ledger-api.js browser/stellar-ledger-api.min.js test/runScript-browser.js"
},
"author": "lenondupe@gmail.com",
"license": "Apache-2.0",
"dependencies": {
"base32.js": "^0.1.0",
"crc": "^3.5.0",
"ledgerco": "^1.1.3",
"q": "1.4.1",
"tweetnacl": "^1.0.0"
},
"devDependencies": {
"stellar-sdk": "^0.7.3",
"browserify": "^13.1.0",
"request": "^2.83.0",
"uglify-js": "2.7.3"
}
}