ula-aca/aries-cloudagent-interface-javascript

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@ula-aca/aries-cloudagent-interface",
  "version": "2.0.0",
  "description": "An Aries Cloudagent API Wrapper for JavaScript and NodeJS",
  "main": "./lib/src/index.js",
  "types": "./lib/src/index.d.ts",
  "scripts": {
    "test": "nyc mocha",
    "coverage": "nyc report",
    "prettier": "prettier --list-different '**/*.{md,json,yaml}'",
    "prettier:fix": "yarn prettier --write",
    "lint": "eslint --ext .js,.ts .",
    "lint:fix": "yarn lint --fix",
    "commitlint": "commitlint --to HEAD",
    "clean": "rm -rf ./lib ./generated",
    "compile": "tsc",
    "build": "yarn generate-api-client && yarn compile",
    "types": "yarn compile --noEmit",
    "generate-api-client": "openapi-generator generate -i resources/aca-py-openapi-schema.json -g typescript-axios -o generated/openapi --additional-properties=supportsES6=true,modelPropertyNaming='original' && git apply patches/api.patch",
    "get-openapi-spec": "swagger2openapi --outfile resources/aca-py-openapi-schema.json --patch",
    "release": "cross-env HUSKY_BYPASS=true semantic-release",
    "prepublishOnly": "yarn clean && yarn build",
    "update-headers": "copyright-header --fix --copyrightHolder 'ula-aca' --templateId 'apache' --forceModificationYear 'present' --include '(src|tests)'"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "aries",
    "cloud-agent",
    "did",
    "identity",
    "blockchain",
    "indy"
  ],
  "files": [
    "lib"
  ],
  "contributors": [
    "Timo Glastra <timo@glastra.me>",
    "Karim Stekelenburg <karim.stekelenburg@me.com>"
  ],
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/ula-aca/aries-cloudagent-interface-javascript"
  },
  "bugs": {
    "url": "https://github.com/ula-aca/aries-cloudagent-interface-javascript/issues"
  },
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@openapitools/openapi-generator-cli": "^1.0.18-5.0.0-beta2",
    "@semantic-release/changelog": "^5.0.1",
    "@semantic-release/git": "^9.0.0",
    "@types/chai": "^4.2.13",
    "@types/chai-as-promised": "^7.1.2",
    "@types/mocha": "^8.0.3",
    "@types/sinon": "^9.0.0",
    "@types/sinon-chai": "^3.2.4",
    "@types/ws": "^7.2.4",
    "@typescript-eslint/eslint-plugin": "^4.4.0",
    "@typescript-eslint/parser": "^4.4.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "commitizen": "^4.0.4",
    "conventional-changelog-conventionalcommits": "^4.2.3",
    "copyright-header": "^0.4.6",
    "cross-env": "^7.0.2",
    "cz-conventional-changelog": "^3.1.0",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.1.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-prettier": "^3.1.2",
    "husky": "^4.2.3",
    "lint-staged": "^10.1.7",
    "mocha": "^8.1.3",
    "nyc": "^15.0.1",
    "prettier": "^2.0.4",
    "semantic-release": "^17.0.4",
    "sinon": "^9.2.0",
    "sinon-chai": "^3.5.0",
    "source-map-support": "^0.5.19",
    "swagger2openapi": "^7.0.2",
    "ts-node": "^9.0.0",
    "typescript": "^4.0.3"
  },
  "dependencies": {
    "axios": "^0.20.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}