conseiljs-softsigner
Advanced tools
Comparing version 0.0.1 to 5.0.0-alpha.0
153
package.json
{ | ||
"name": "conseiljs-softsigner", | ||
"version": "0.0.1", | ||
"description": "Software signer for the ConseilJS library.", | ||
"main": "index.js", | ||
"version": "5.0.0-alpha.0", | ||
"description": "ConseilJS software signer plugin for ConseilJS-core. Supports the ED25519 curve via libsodium for tz1-address operations.", | ||
"browser": "dist/index.js", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"test": "mocha \"test/**/*.spec.ts\"", | ||
"integration-test": "mocha -r source-map-support/register -r ts-node/register --full-trace -t 600000 -b false \"integration_test/**/*.spec.ts\"", | ||
"format": "eslint --fix-dry-run src/*/*.ts", | ||
"coverage": "nyc mocha \"test/**/*.spec.ts\" || nyc report | coveralls", | ||
"integration-coverage": "nyc mocha -r source-map-support/register -r ts-node/register --full-trace -t 600000 -b false \"integration_test/**/*.spec.ts\" && nyc report | coveralls", | ||
"release-check": "npm run test && npm audit && npm outdated", | ||
"doc": "rm -rf ./tsdoc && typedoc --readme none --excludeNotExported --mode file --theme markdown --out ./tsdoc ./src", | ||
"package": "rm -rf ./dist && tsc && copyfiles -u 1 \"./src/**/*.js\" dist/", | ||
"package-web": "webpack && rm -rf ./dist-web/dist && openssl dgst -sha384 -binary ./dist-web/conseiljs.min.js | openssl base64 -A" | ||
}, | ||
@@ -14,12 +27,138 @@ "repository": { | ||
"keywords": [ | ||
"conseiljs", | ||
"tezos", | ||
"blockchains" | ||
"conseil", | ||
"blockchain analytics", | ||
"blockchain reporting", | ||
"blockchain data access", | ||
"web3", | ||
"dapp" | ||
], | ||
"author": "Cryptonomic Inc", | ||
"license": "Apache-2.0", | ||
"licenses": [ | ||
{ | ||
"type": "Apache-2.0", | ||
"url": "http://www.apache.org/licenses/LICENSE-2.0" | ||
} | ||
], | ||
"bugs": { | ||
"url": "https://github.com/Cryptonomic/ConseilJS/issues" | ||
}, | ||
"homepage": "https://github.com/Cryptonomic/ConseilJS#readme" | ||
"homepage": "https://cryptonomic.github.io/ConseilJS/#/", | ||
"nyc": { | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"src/**/lexer/*.*" | ||
], | ||
"extension": [ | ||
".ts" | ||
], | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"reporter": [ | ||
"text-lcov" | ||
], | ||
"sourceMap": true, | ||
"instrument": true | ||
}, | ||
"dependencies": { | ||
"bip39": "3.0.2", | ||
"conseiljs": "5.0.0-alpha.2", | ||
"libsodium-wrappers-sumo": "0.7.6" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "4.2.11", | ||
"@types/chai-as-promised": "7.1.2", | ||
"@types/mocha": "7.0.2", | ||
"@types/nock": "11.1.0", | ||
"@types/node": "13.9.1", | ||
"@typescript-eslint/eslint-plugin": "2.29.0", | ||
"@typescript-eslint/parser": "2.29.0", | ||
"awesome-typescript-loader": "5.2.1", | ||
"chai": "4.2.0", | ||
"chai-as-promised": "7.1.1", | ||
"copyfiles": "2.2.0", | ||
"coveralls": "3.0.12", | ||
"eslint": "6.8.0", | ||
"eslint-config-airbnb-base": "14.1.0", | ||
"eslint-plugin-import": "2.20.2", | ||
"mocha": "7.1.1", | ||
"nyc": "15.0.1", | ||
"request-promise": "4.2.5", | ||
"source-map-loader": "0.2.4", | ||
"source-map-support": "0.5.18", | ||
"terser-webpack-plugin": "2.3.5", | ||
"ts-loader": "6.2.1", | ||
"ts-node": "8.9.0", | ||
"tsconfig-paths-webpack-plugin": "3.2.0", | ||
"typedoc": "0.17.4", | ||
"typedoc-plugin-markdown": "2.2.17", | ||
"typescript": "3.8.3", | ||
"webpack": "4.43.0", | ||
"webpack-cli": "3.3.11", | ||
"webpack-node-externals": "1.7.2" | ||
}, | ||
"engines": { | ||
"node": ">=12.16.x", | ||
"npm": ">=6.14.x" | ||
}, | ||
"eslintConfig": { | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"env": { | ||
"mocha": true, | ||
"node": true | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"**/**/*.ts" | ||
], | ||
"excludedFiles": [ | ||
"lexer/*.ts" | ||
] | ||
} | ||
], | ||
"extends": "airbnb-base", | ||
"rules": { | ||
"comma-dangle": [ | ||
2, | ||
"never" | ||
], | ||
"curly": [ | ||
2, | ||
"all" | ||
], | ||
"indent": [ | ||
1, | ||
4 | ||
], | ||
"max-len": [ | ||
2, | ||
{ | ||
"code": 200, | ||
"ignoreTrailingComments": true | ||
} | ||
], | ||
"no-tabs": [ | ||
2 | ||
], | ||
"quotes": [ | ||
2, | ||
"single" | ||
], | ||
"array-element-newline": [ | ||
2, | ||
{ | ||
"multiline": true, | ||
"minItems": 5 | ||
} | ||
] | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
36151
16
299
1
1
2
3
30
1
2
+ Addedbip39@3.0.2
+ Addedconseiljs@5.0.0-alpha.2
+ Added@types/node@11.11.6(transitive)
+ Addedbase-x@3.0.10(transitive)
+ Addedbig-integer@1.6.48(transitive)
+ Addedbip39@3.0.2(transitive)
+ Addedblakejs@1.1.0(transitive)
+ Addedbs58@4.0.1(transitive)
+ Addedbs58check@2.1.2(transitive)
+ Addedcipher-base@1.0.5(transitive)
+ Addedcommander@2.20.3(transitive)
+ Addedconseiljs@5.0.0-alpha.2(transitive)
+ Addedcreate-hash@1.2.0(transitive)
+ Addedcreate-hmac@1.1.7(transitive)
+ Addeddiscontinuous-range@1.0.0(transitive)
+ Addedhash-base@3.1.0(transitive)
+ Addedinherits@2.0.4(transitive)
+ Addedjsonpath-plus@3.0.0(transitive)
+ Addedlibsodium-sumo@0.7.6(transitive)
+ Addedlibsodium-wrappers-sumo@0.7.6(transitive)
+ Addedmd5.js@1.3.5(transitive)
+ Addedmoo@0.5.0(transitive)
+ Addednearley@2.19.1(transitive)
+ Addedpbkdf2@3.1.2(transitive)
+ Addedrailroad-diagrams@1.0.0(transitive)
+ Addedrandexp@0.4.6(transitive)
+ Addedrandombytes@2.1.0(transitive)
+ Addedreadable-stream@3.6.2(transitive)
+ Addedret@0.1.15(transitive)
+ Addedripemd160@2.0.2(transitive)
+ Addedsafe-buffer@5.2.1(transitive)
+ Addedsemver@5.7.2(transitive)
+ Addedsha.js@2.4.11(transitive)
+ Addedstring_decoder@1.3.0(transitive)
+ Addedutil-deprecate@1.0.2(transitive)