-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
executable file
·93 lines (93 loc) · 3.57 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
84
85
86
87
88
89
90
91
92
93
{
"name": "agama-wallet-lib",
"version": "0.3.3",
"description": "Agama wallet library",
"keywords": [
"agama wallet",
"wallet",
"komodo",
"supernet"
],
"homepage": "https://github.com/pbca26/agama-wallet-lib",
"bugs": {
"url": "https://github.com/pbca26/agama-wallet-lib/issues"
},
"license": "MIT",
"author": "SuperNET",
"files": [
"index.js",
"src",
"build"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/pbca26/agama-wallet-lib.git"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"build": "rm -rf build/* && ./node_modules/.bin/babel src --ignore spec.js,test.js,**/__tests__/*.js --out-dir build",
"test": "npm run lint && npm run test:tape",
"test:tape": "NODE_ENV=test ./node_modules/.bin/tape -r babel-register src/**/__tests__/**/index.js | tap-diff",
"test:coverage": "NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov npm run test:tape; ./node_modules/.bin/nyc report ---reporter=text",
"lint": "npm run lint:code",
"lint:code": "NODE_ENV=test eslint --config=.eslintrc src",
"lint:fix": "NODE_ENV=test eslint --fix --config=.eslintrc src",
"lint:codeframe": "NODE_ENV=test eslint --config=.eslintrc src -f codeframe > coverage/eslint-codeframe-report",
"release": "./node_modules/.bin/standard-version",
"version": "npm run release --commit-all",
"version:patch": "npm run release -- --release-as patch",
"version:minor": "npm run release -- --release-as minor",
"version:major": "npm run release -- --release-as major",
"push": "git push --follow-tags origin master && npm publish",
"deploy": "npm run version && npm run push",
"deploy:patch": "npm run version:patch && npm run push",
"deploy:minor": "npm run version:minor && npm run push",
"deploy:major": "npm run version:major && npm run push",
"preversion": "npm run test && npm run lint && npm run build",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify-shim": "^3.8.14",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"nyc": "^12.0.2",
"standard-version": "^4.4.0",
"tap-diff": "^0.1.1",
"tape": "^4.9.1"
},
"dependencies": {
"bigi": "^1.4.2",
"bip32": "^1.0.2",
"bip39": "^2.4.0",
"bitcoinforksjs-lib": "git+https://github.com/SuperNETorg/bitcoinjs-lib#opt-in-bitcoincash-sighash",
"bitcoinjs-lib": "git+https://github.com/SuperNETorg/bitcoinjs-lib",
"bitcoinjs-lib-pos": "git+https://github.com/KomodoPlatform/bitcoinjs-lib-pos",
"bitcoinjs-lib-zcash": "git+https://github.com/pbca26/bitcoinjs-lib#zcash",
"bitcoinjs-message": "^2.0.0",
"bitcore-lib-zcash": "git+https://github.com/zcash-hackworks/bitcore-lib-zcash",
"bitcore-message": "git+https://github.com/pbca26/bitcore-message",
"bitgo-utxo-lib": "git+https://github.com/pbca26/bitgo-utxo-lib",
"bitgo-utxo-lib-groestl": "git+https://github.com/SuperNETorg/bitgo-utxo-lib",
"bluebird": "^3.4.7",
"buffer-reverse": "^1.0.1",
"coinselect": "github:bitcoinjs/coinselect",
"ethereumjs-util": "^6.0.0",
"ethers": "git+https://github.com/pbca26/ethers.js",
"install": "^0.12.2",
"iocane": "^1.0.0",
"js-sha256": "^0.7.1",
"node-fetch": "^2.6.0",
"nodejs-aes256": "^1.0.1",
"npm": "^6.9.0",
"passwd-strength": "git+https://github.com/pbca26/passwd-strength",
"sha256": "^0.2.0",
"tx-decoder": "git+https://github.com/pbca26/tx-decoder",
"wif": "^2.0.6"
}
}