Files
eosjs/package.json
T
Eric Passmore 1271b842e5 release candidate rc3 supporting mandel 3.1 endpoints
* Made sure server_version_string was avalible. It would be undefined when chainId was provided to the constructor. Made server_version a private late-init member, and added a check to populate when needed
* Added node's semver parsing for version string support checks
* Security updated moved developement package JsSigniture to use Buffer.from
* Updated npm dependancies to include node-fetch and semver
* Documentation: Added simple example in readme
* Documenation: Added clarity on providers of private key vaults
* Documentation: switch to npm build/install no more references to yarn

Squashed commit of the following:

commit 5c321adb22493298fc0d2b3624ccffddbe66af97
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Mon Aug 15 09:51:25 2022 -0700

    minor updates for node package

    updated dependancies in package.json
    switch all yarn instructures to use npm (its 2022 npm is the way to go)
    added a very simple example to get info into readme

    Updated documentation for send_transaction2
    Removed EOSIO github references
    Updated .travel.yml with node_js 16.0.0 and npm@8.0.0

Date:   Fri Aug 12 22:22:25 2022 -0700

    minor fixes for release of node pkg

commit 57bb0003a808e58de9154271cf12d3e9cfb68346
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Fri Aug 12 19:22:57 2022 -0700

    init commit updated for integration tests

commit 5855e69c1ed2a35c20300189272419ab95031fc6
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Tue Aug 9 13:36:53 2022 -0700

    housekeeping updated .gitignore for webstorm, and added package-lock.json

commit ff87097ae66c06808000f046362c0c15b6ed1fa2
Merge: f65d2cb 4266b71
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Tue Aug 9 13:31:57 2022 -0700

    Merge remote-tracking branch 'origin' into ericpassmore-working

commit f65d2cbfc916081676bf7d4cf61c65ea54c90f14
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Mon Aug 8 20:27:55 2022 -0700

    first pass instructions for integration tests

commit 32a4bd40260a8d8d3debade9d24421e4fdc1e555
Merge: 9d6aa60 251beab
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Mon Aug 8 12:39:49 2022 -0700

    Merge Updated release 3.0 Endpoints for get info and transaction

commit 9d6aa60846d30f66f5e64eb6d29bb7c6f0cd35ae
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Thu Aug 4 12:48:15 2022 -0700

    fixed path for reference

commit a22bdfa6f9b539f9736ac2809a33afb0c1148a28
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Wed Aug 3 13:09:29 2022 -0700

    removed eos.io

commit 704be7c65ae3bc00236e5dcac71883c8bf8ada7d
Author: Eric Passmore <eric.passmore@gmail.com>
Date:   Wed Aug 3 13:06:57 2022 -0700

    removed eos.io references
2022-08-15 09:59:19 -07:00

92 lines
2.6 KiB
JSON

{
"name": "enf-eosjs",
"version": "23.0.0-rc3",
"description": "JS API to talk to eosio blockchain",
"main": "dist/index.js",
"scripts": {
"cypress": "cypress run --spec 'cypress/integration/index.spec.js'",
"cypress-ui": "cypress open",
"prepare": "npm run build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"test": "jest src/tests/*eosjs*",
"test-node": "jest src/tests/*node*",
"test-all": "yarn test && yarn test-node && yarn cypress",
"build": "tsc -p ./tsconfig.json && cp src/ripemd.es5.js dist/ripemd.js",
"build-web": "webpack --config webpack.prod.js && webpack --config webpack.debug.js",
"build-production": "yarn build && yarn build-web && yarn test-all",
"clean": "rm -rf dist",
"docs-init": "sh .docs/scripts/init.sh",
"docs-build": "sh .docs/scripts/build.sh",
"docs-serve": "python -m SimpleHTTPServer",
"docs-publish": "sh .docs/scripts/publish.sh"
},
"author": "eosnetworkfoundation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eosnetworkfoundation/mandel-eosjs"
},
"dependencies": {
"@types/text-encoding": "^0.0.36",
"bn.js": "5.2.0",
"elliptic": "6.5.4",
"hash.js": "1.1.7",
"pako": "2.0.3",
"node-fetch": "2.6.7",
"semver": "^7.3.7"
},
"devDependencies": {
"@blockone/eslint-config-blockone": "^4.0.1",
"@cypress/skip-test": "^2.6.1",
"@types/elliptic": "^6.4.13",
"@types/jest": "^26.0.24",
"@types/node": "^14.18.21",
"@types/node-fetch": "^2.5.11",
"@types/pako": "^1.0.2",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^3.0.0",
"crypto-browserify": "^3.12.0",
"cypress": "^7.7.0",
"eosjs-ecc": "^4.0.7",
"eslint": "^7.30.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"jest-fetch-mock": "^3.0.3",
"none": "^1.0.0",
"rimraf": "^3.0.2",
"text-encoding": "^0.7.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.3",
"typedoc": "^0.23.5",
"typedoc-markdown-theme": "^0.0.4",
"typedoc-plugin-markdown": "^3.13.2",
"typescript": "^4.3.5",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"jest": {
"automock": false,
"setupFiles": [
"./src/tests/setupJest.js"
],
"setupFilesAfterEnv": [
"jest-extended"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "node"
}
}