Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

conseiljs-softsigner

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conseiljs-softsigner - npm Package Compare versions

Comparing version 0.0.1 to 5.0.0-alpha.0

dist/index.d.ts

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
}
]
}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc