{
  "name": "graph-diagram",
  "version": "0.0.10",
  "description": "A TypeScript library version of apcjones Arrows project: github.com/apcj/arrows",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build": "npm run clean && webpack --mode development || echo not ok",
    "clean": "rimraf dist",
    "test": "jest",
    "test:watch": "npm test -- --watch",
    "coverage": "npm test -- --coverage --no-cache",
    "coverage:watch": "npm run coverage -- --watch",
    "build:example-browser-tests": "webpack --config webpack.config.examples.tests.js --mode development",
    "build:example-browser-tests:watch": "webpack --config webpack.config.examples.tests.js --mode development --watch",
    "build:example-browser-editor": "webpack --config webpack.config.examples.editor.js --mode development",
    "build:example-browser-editor:watch": "webpack --config webpack.config.examples.editor.js --watch --mode development",
    "clean:examples": "rimraf docs/examples/lib",
    "build:all": "npm run clean; npm run clean:examples; npm run build; npm run build:example-browser-tests; npm run build:example-browser-editor"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wwlib/graph-diagram.git"
  },
  "keywords": [
    "graph",
    "visualization",
    "library"
  ],
  "author": "Andrew Rapo <andrew@worthwhilegames.org> (http://worthwhilegames.org)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/wwlib/graph-diagram/issues"
  },
  "homepage": "https://github.com/wwlib/graph-diagram#readme",
  "devDependencies": {
    "@types/d3": "^4.12.0",
    "@types/jest": "^22.1.1",
    "awesome-typescript-loader": "^3.4.1",
    "d3": "^4.13.0",
    "jest": "^22.2.1",
    "rimraf": "^2.6.2",
    "source-map-loader": "^0.2.3",
    "ts-jest": "^22.0.3",
    "typescript": "^2.7.1"
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "mapCoverage": true,
    "collectCoverageFrom": [
      "src/**/*.ts"
    ],
    "coveragePathIgnorePatterns": [
      "/__tests__/",
      "/node_modules/"
    ],
    "testEnvironment": "node",
    "testRegex": "__tests__/.*\\.spec\\.ts$",
    "moduleFileExtensions": [
      "ts",
      "js",
      "json"
    ]
  },
  "dependencies": {}
}
