{
  "name": "yagl",
  "version": "0.5.1",
  "description": "Yet another library for storing and manipulating mathematical graphs",
  "main": "lib/index.js",
  "sideEffects": false,
  "scripts": {
    "prepare": "tsc && babel src --out-dir lib -x .ts",
    "watch": "ava --watch",
    "test": "ava"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/samvv/YAGL.git"
  },
  "keywords": [
    "graph",
    "sorting",
    "data",
    "data-structure",
    "algorithm",
    "strongly-connected-components",
    "topological-sort",
    "typescript",
    "library"
  ],
  "author": "Sam Vervaeck",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/samvv/YAGL/issues"
  },
  "homepage": "https://github.com/samvv/YAGL#readme",
  "devDependencies": {
    "@ava/babel": "^2.0.0",
    "@babel/cli": "^7.18.10",
    "@babel/plugin-proposal-class-properties": "^7.18.6",
    "@babel/preset-env": "^7.18.10",
    "@babel/preset-typescript": "^7.18.6",
    "@babel/register": "^7.18.9",
    "ava": "^4.3.3"
  },
  "ava": {
    "require": [
      "./babel-register"
    ],
		"extensions": [
			"ts"
		]
  }
}
