{
  "name": "nkeys.js",
  "version": "1.0.0-9",
  "description": "A public-key signature system based on Ed25519 for the NATS ecosystem in javascript",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "init": "mkdir -p build",
    "clean": "rm -Rf build/ lib/ nkeys.d.ts nkeys.mjs",
    "fmt": "deno fmt src/ examples/ modules/ test/ node_test/",
    "cjs": "deno run --allow-all bin/cjs-fix-imports.ts -o build/ src/ modules/cjs/ node_test/",
    "stage": "npm run init && npm run cjs && tsc",
    "prepare": "npm run stage && deno bundle modules/esm/mod.ts nkeys.mjs && tsc",
    "test": "npm run prepare && ava --verbose && deno test test/",
    "doc": "node_modules/.bin/typedoc --options ./typedoc.json && touch ./docs/.nojekyll"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com//nats-io/ts-nkeys"
  },
  "keywords": [
    "nats",
    "Ed25519",
    "javascript"
  ],
  "author": "The NATS Authors",
  "license": "Apache-2.0",
  "dependencies": {
    "@types/node": "^14.0.26",
    "tweetnacl": "^1.0.3"
  },
  "devDependencies": {
    "ava": "^3.12.1",
    "typedoc": "^0.19.1",
    "typescript": "^4.0.2"
  },
  "ava": {
    "failFast": true,
    "require": [],
    "files": [
      "./node_test/*.js"
    ]
  }
}
