{
  "name": "u-toposort",
  "version": "1.0.1",
  "description": "Universal Topological Sort that supports both JS/TS and HTML imports",
  "unpkg": "build/toposort.min.js",
  "jsdelivr": "build/toposort.min.js",
  "module": "build/toposort.module.js",
  "main": "build/toposort.js",
  "types": "build/index.d.js",
  "scripts": {
    "prebuild": "rimraf build && mkdirp build",
    "build": "rollup -c",
    "test": "jest --config ./jest.config.js test/",
    "prepare": "npm run build",
    "prepublishOnly": "npm test",
    "format": "prettier --write \"src/**/*.ts\"",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chanwutk/u-toposort.git"
  },
  "keywords": [
    "topological",
    "sort"
  ],
  "author": "Chanwut Kittivorawong",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/chanwutk/u-toposort/issues"
  },
  "homepage": "https://github.com/chanwutk/u-toposort#readme",
  "devDependencies": {
    "@types/jest": "^26.0.14",
    "jest": "^26.4.2",
    "mkdirp": "^1.0.4",
    "prettier": "^2.1.2",
    "rimraf": "^3.0.2",
    "rollup": "^2.28.2",
    "rollup-plugin-bundle-size": "^1.0.3",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-typescript2": "^0.27.2",
    "ts-jest": "^26.4.0",
    "typescript": "^4.0.3"
  },
  "files": [
    "build"
  ]
}
