@airgap/groestlcoin 0.13.11-beta.0 → 0.13.11-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -9
- package/airgap-coinlib-groestlcoin.min.js +0 -100321
- package/index.d.ts +0 -1
- package/index.js +0 -18
- package/index.js.map +0 -1
- package/v0/index.d.ts +0 -4
- package/v0/index.js +0 -21
- package/v0/index.js.map +0 -1
- package/v0/protocol/GroestlcoinProtocol.d.ts +0 -23
- package/v0/protocol/GroestlcoinProtocol.js +0 -89
- package/v0/protocol/GroestlcoinProtocol.js.map +0 -1
- package/v0/protocol/GroestlcoinProtocolOptions.d.ts +0 -26
- package/v0/protocol/GroestlcoinProtocolOptions.js +0 -149
- package/v0/protocol/GroestlcoinProtocolOptions.js.map +0 -1
- package/v0/protocol/GroestlcoinTestnetProtocol.d.ts +0 -4
- package/v0/protocol/GroestlcoinTestnetProtocol.js +0 -56
- package/v0/protocol/GroestlcoinTestnetProtocol.js.map +0 -1
- package/v1/block-explorer/CryptoIDBlockExplorer.d.ts +0 -11
- package/v1/block-explorer/CryptoIDBlockExplorer.js +0 -75
- package/v1/block-explorer/CryptoIDBlockExplorer.js.map +0 -1
- package/v1/index.d.ts +0 -9
- package/v1/index.js +0 -10
- package/v1/index.js.map +0 -1
- package/v1/module/GroestlcoinModule.d.ts +0 -17
- package/v1/module/GroestlcoinModule.js +0 -113
- package/v1/module/GroestlcoinModule.js.map +0 -1
- package/v1/module.d.ts +0 -3
- package/v1/module.js +0 -24
- package/v1/module.js.map +0 -1
- package/v1/protocol/GroestlcoinProtocol.d.ts +0 -60
- package/v1/protocol/GroestlcoinProtocol.js +0 -511
- package/v1/protocol/GroestlcoinProtocol.js.map +0 -1
- package/v1/serializer/v3/schemas/converter/transaction-converter.d.ts +0 -7
- package/v1/serializer/v3/schemas/converter/transaction-converter.js +0 -21
- package/v1/serializer/v3/schemas/converter/transaction-converter.js.map +0 -1
- package/v1/serializer/v3/schemas/definitions/transaction-sign-request-groestlcoin.d.ts +0 -5
- package/v1/serializer/v3/schemas/definitions/transaction-sign-request-groestlcoin.js +0 -3
- package/v1/serializer/v3/schemas/definitions/transaction-sign-request-groestlcoin.js.map +0 -1
- package/v1/serializer/v3/schemas/definitions/transaction-sign-response-groestlcoin.d.ts +0 -3
- package/v1/serializer/v3/schemas/definitions/transaction-sign-response-groestlcoin.js +0 -3
- package/v1/serializer/v3/schemas/definitions/transaction-sign-response-groestlcoin.js.map +0 -1
- package/v1/serializer/v3/schemas/generated/transaction-sign-request-groestlcoin.json +0 -109
- package/v1/serializer/v3/schemas/generated/transaction-sign-response-groestlcoin.json +0 -37
- package/v1/serializer/v3/serializer-companion.d.ts +0 -14
- package/v1/serializer/v3/serializer-companion.js +0 -173
- package/v1/serializer/v3/serializer-companion.js.map +0 -1
- package/v1/serializer/v3/validators/transaction-validator.d.ts +0 -4
- package/v1/serializer/v3/validators/transaction-validator.js +0 -29
- package/v1/serializer/v3/validators/transaction-validator.js.map +0 -1
- package/v1/serializer/v3/validators/validators.d.ts +0 -7
- package/v1/serializer/v3/validators/validators.js +0 -6
- package/v1/serializer/v3/validators/validators.js.map +0 -1
- package/v1/types/protocol.d.ts +0 -18
- package/v1/types/protocol.js +0 -3
- package/v1/types/protocol.js.map +0 -1
- package/v1/types/transaction.d.ts +0 -7
- package/v1/types/transaction.js +0 -3
- package/v1/types/transaction.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@airgap/groestlcoin",
|
|
3
|
-
"version": "0.13.11-beta.
|
|
3
|
+
"version": "0.13.11-beta.1",
|
|
4
4
|
"description": "The @airgap/groestlcoin is a Groestlcoin implementation of the ICoinProtocol interface from @airgap/coinlib-core.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"airgap",
|
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
|
+
"main": "dist/index.js",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
20
24
|
"scripts": {
|
|
21
25
|
"build": "rm -rf ./dist && tsc && node scripts/copy-files-after-build.js",
|
|
22
26
|
"build-scripts": "tsc scripts/*.ts",
|
|
@@ -24,17 +28,16 @@
|
|
|
24
28
|
"lint:prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
25
29
|
"lint-ci": "tslint -t json -o ../../lint-reports/groestlcoin.json --project . || true",
|
|
26
30
|
"lint-ci:prettier": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --list-different",
|
|
27
|
-
"test": "TS_NODE_PROJECT='./test/tsconfig.json' nyc mocha --bail --require ts-node/register --require source-map-support/register --full-trace --delay --timeout 40000 ./test/**/**.spec.ts",
|
|
31
|
+
"test": "TS_NODE_PROJECT='./test/tsconfig.json' nyc mocha --bail --require ts-node/register --require tsconfig-paths/register --require source-map-support/register --full-trace --delay --timeout 40000 ./test/**/**.spec.ts",
|
|
28
32
|
"test-ci": "nyc --reporter=lcov npm test",
|
|
29
|
-
"
|
|
30
|
-
"browserify": "browserify ./dist/index.js -p realpathify -s airgapCoinLibGroestlcoin > ./dist/airgap-coinlib-groestlcoin.min.js"
|
|
33
|
+
"browserify": "browserify ./dist/index.js -s airgapCoinLibGroestlcoin > ./dist/airgap-coinlib-groestlcoin.min.js"
|
|
31
34
|
},
|
|
32
35
|
"author": "Papers GmbH <contact@papers.ch> (https://papers.ch)",
|
|
33
|
-
"
|
|
34
|
-
"@airgap/bitcoin": "
|
|
35
|
-
"@airgap/coinlib-core": "
|
|
36
|
-
"@airgap/module-kit": "
|
|
37
|
-
"@airgap/serializer": "
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@airgap/bitcoin": "*",
|
|
38
|
+
"@airgap/coinlib-core": "*",
|
|
39
|
+
"@airgap/module-kit": "*",
|
|
40
|
+
"@airgap/serializer": "*"
|
|
38
41
|
},
|
|
39
42
|
"localDependencies": {
|
|
40
43
|
"groestlcoinjs-message": "2.1.0"
|