{
  "name": "yaca",
  "version": "1.2.3",
  "description": "Yet Another Collection Approach: A Collection library for TypeScript / JavaScript",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "documentation": "typedoc --out ./docs/ ./src/ --readme ./README.md  --target ES5 --name \"Yet Another Collection Approach\" && ncp ./.nojekyll ./docs/",
    "prepare": "npm run build",
    "build": "tsc && npm run documentation",
    "test-mocha": "mocha -r ts-node/register ./test/**/*Test.ts",
    "test": "nyc --reporter=html --reporter=text mocha -r ts-node/register --timeout=3000",
    "coverage": "nyc report --reporter=text-lcov | coveralls"
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts",
      "**/*Test.ts"
    ],
    "require": [
      "ts-node/register"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rabanti-github/yaca.git"
  },
  "keywords": [
    "TypeScript",
    "Collections",
    "List",
    "Stack",
    "Queue",
    "Dictionary",
    "Sorted Dictionary",
    "SortedDictionary",
    "Array List",
    "ArrayList",
    "Generics"
  ],
  "author": {
    "name": "Raphael Stoeckli",
    "email": "npm@rabanti.ch",
    "url": "https://github.com/rabanti-github"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rabanti-github/yaca/issues"
  },
  "homepage": "https://github.com/rabanti-github/yaca#readme",
  "dependencies": {
    "lodash.isequal": "^4.5.0"
  },
  "devDependencies": {
    "@types/chai": "^4.1.6",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.12.0",
    "chai": "^4.2.0",
    "coveralls": "^3.0.2",
    "ncp": "^2.0.0",
    "mocha": "^5.2.0",
    "nyc": "^13.1.0",
    "ts-node": "^7.0.1",
    "tslint": "^5.11.0",
    "typedoc": "^0.15.0",
    "typescript": "^3.1.3"
  }
}
