@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.
Files changed (58) hide show
  1. package/package.json +12 -9
  2. package/airgap-coinlib-groestlcoin.min.js +0 -100321
  3. package/index.d.ts +0 -1
  4. package/index.js +0 -18
  5. package/index.js.map +0 -1
  6. package/v0/index.d.ts +0 -4
  7. package/v0/index.js +0 -21
  8. package/v0/index.js.map +0 -1
  9. package/v0/protocol/GroestlcoinProtocol.d.ts +0 -23
  10. package/v0/protocol/GroestlcoinProtocol.js +0 -89
  11. package/v0/protocol/GroestlcoinProtocol.js.map +0 -1
  12. package/v0/protocol/GroestlcoinProtocolOptions.d.ts +0 -26
  13. package/v0/protocol/GroestlcoinProtocolOptions.js +0 -149
  14. package/v0/protocol/GroestlcoinProtocolOptions.js.map +0 -1
  15. package/v0/protocol/GroestlcoinTestnetProtocol.d.ts +0 -4
  16. package/v0/protocol/GroestlcoinTestnetProtocol.js +0 -56
  17. package/v0/protocol/GroestlcoinTestnetProtocol.js.map +0 -1
  18. package/v1/block-explorer/CryptoIDBlockExplorer.d.ts +0 -11
  19. package/v1/block-explorer/CryptoIDBlockExplorer.js +0 -75
  20. package/v1/block-explorer/CryptoIDBlockExplorer.js.map +0 -1
  21. package/v1/index.d.ts +0 -9
  22. package/v1/index.js +0 -10
  23. package/v1/index.js.map +0 -1
  24. package/v1/module/GroestlcoinModule.d.ts +0 -17
  25. package/v1/module/GroestlcoinModule.js +0 -113
  26. package/v1/module/GroestlcoinModule.js.map +0 -1
  27. package/v1/module.d.ts +0 -3
  28. package/v1/module.js +0 -24
  29. package/v1/module.js.map +0 -1
  30. package/v1/protocol/GroestlcoinProtocol.d.ts +0 -60
  31. package/v1/protocol/GroestlcoinProtocol.js +0 -511
  32. package/v1/protocol/GroestlcoinProtocol.js.map +0 -1
  33. package/v1/serializer/v3/schemas/converter/transaction-converter.d.ts +0 -7
  34. package/v1/serializer/v3/schemas/converter/transaction-converter.js +0 -21
  35. package/v1/serializer/v3/schemas/converter/transaction-converter.js.map +0 -1
  36. package/v1/serializer/v3/schemas/definitions/transaction-sign-request-groestlcoin.d.ts +0 -5
  37. package/v1/serializer/v3/schemas/definitions/transaction-sign-request-groestlcoin.js +0 -3
  38. package/v1/serializer/v3/schemas/definitions/transaction-sign-request-groestlcoin.js.map +0 -1
  39. package/v1/serializer/v3/schemas/definitions/transaction-sign-response-groestlcoin.d.ts +0 -3
  40. package/v1/serializer/v3/schemas/definitions/transaction-sign-response-groestlcoin.js +0 -3
  41. package/v1/serializer/v3/schemas/definitions/transaction-sign-response-groestlcoin.js.map +0 -1
  42. package/v1/serializer/v3/schemas/generated/transaction-sign-request-groestlcoin.json +0 -109
  43. package/v1/serializer/v3/schemas/generated/transaction-sign-response-groestlcoin.json +0 -37
  44. package/v1/serializer/v3/serializer-companion.d.ts +0 -14
  45. package/v1/serializer/v3/serializer-companion.js +0 -173
  46. package/v1/serializer/v3/serializer-companion.js.map +0 -1
  47. package/v1/serializer/v3/validators/transaction-validator.d.ts +0 -4
  48. package/v1/serializer/v3/validators/transaction-validator.js +0 -29
  49. package/v1/serializer/v3/validators/transaction-validator.js.map +0 -1
  50. package/v1/serializer/v3/validators/validators.d.ts +0 -7
  51. package/v1/serializer/v3/validators/validators.js +0 -6
  52. package/v1/serializer/v3/validators/validators.js.map +0 -1
  53. package/v1/types/protocol.d.ts +0 -18
  54. package/v1/types/protocol.js +0 -3
  55. package/v1/types/protocol.js.map +0 -1
  56. package/v1/types/transaction.d.ts +0 -7
  57. package/v1/types/transaction.js +0 -3
  58. 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.0",
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
- "test-legacy": "",
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
- "peerDependencies": {
34
- "@airgap/bitcoin": "^0.13.10",
35
- "@airgap/coinlib-core": "^0.13.10",
36
- "@airgap/module-kit": "^0.13.10",
37
- "@airgap/serializer": "^0.13.10"
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"