{
  "name": "walk-package-graph",
  "version": "0.1.1",
  "description": "High speed Node.js package dependency graph walker based on Node.js module resolution algorithm",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "scripts": {
    "build": "npm run lint && npm run coverage && npm run clean && npm run build:cjs && npm run build:esm",
    "build:cjs": "tsc -b config/tsconfig.cjs.json",
    "build:esm": "tsc -b config/tsconfig.esm.json",
    "clean": "rimraf dist",
    "coverage": "nyc mocha --opts mocha.opts",
    "coveralls": "cat .coverage/lcov.info | coveralls",
    "dev:cjs": "tsc -b --watch config/tsconfig.cjs.json",
    "dev:esm": "tsc -b --watch config/tsconfig.esm.json",
    "doc": "ts-node scripts/doc.ts",
    "lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
    "performance": "node -r ts-node/register ./test/usages/performance.ts",
    "profile": "node -r ts-node/register --inspect ./test/usages/profile.ts",
    "real:publish": "npm run build && npm config set registry https://registry.npmjs.com/ && npm publish",
    "test:publish": "npm run build && npm config set registry http://localhost:4873/ && npm publish --registry http://localhost:4873",
    "test": "mocha --opts mocha.opts",
    "test:dev": "mocha --opts mocha.opts -w"
  },
  "keywords": [
    "walk",
    "traverse",
    "node.js",
    "package",
    "node_modules",
    "dependency",
    "dependency tree",
    "graph",
    "npm graph",
    "tree",
    "npm tree",
    "package-graph",
    "read-package-graph",
    "read-package-tree"
  ],
  "author": "ajaxlab7@gmail.com",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ajaxlab/walk-package-graph.git"
  },
  "bugs": {
    "url": "https://github.com/ajaxlab/walk-package-graph/issues"
  },
  "homepage": "https://github.com/ajaxlab/walk-package-graph#readme",
  "devDependencies": {
    "@types/chai": "^4.2.0",
    "@types/mocha": "^5.2.7",
    "@types/node": "^12.7.1",
    "@types/read-package-tree": "^5.2.0",
    "chai": "^4.2.0",
    "coveralls": "^3.0.6",
    "mocha": "^6.2.0",
    "nyc": "^14.1.1",
    "read-package-tree": "^5.3.1",
    "rimraf": "^2.6.3",
    "ts-node": "^8.3.0",
    "tslint": "^5.18.0",
    "tslint-lines-between-class-members": "^1.3.6",
    "typedoc": "^0.15.0",
    "typedoc-plugin-markdown": "^2.1.1",
    "typescript": "^3.5.3"
  },
  "dependencies": {
    "mini-semver": "^0.1.1",
    "package-json-type": "^1.0.3",
    "tslib": "^1.10.0"
  }
}
