{
  "name": "lexorank",
  "_id": "lexorank@1.0.5",
  "version": "1.0.5",
  "description": "A reference implementation of a list ordering system like JIRA's Lexorank algorithm",
  "author": {
    "name": "kvandake"
  },
  "license": "MIT",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "keywords": [
    "LexoRank",
    "JIRA"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kvandake/lexorank-ts.git"
  },
  "bugs": {
    "url": "https://github.com/kvandake/lexorank-ts/issues"
  },
  "homepage": "https://github.com/kvandake/lexorank-ts",
  "scripts": {
    "clean": "rimraf lib",
    "build": "yarn run clean && tsc",
    "test": "jest",
    "lint": "eslint -c .eslintrc.js --ext .ts ./src",
    "prepublishOnly": "yarn test && yarn run lint",
    "preversion": "yarn run lint",
    "version": "git add -A src",
    "postversion": "git push && git push --tags",
    "storybook": "start-storybook -p 6006",
    "build-storybook": "build-storybook",
    "chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
  },
  "devDependencies": {
    "@babel/core": "^7.18.13",
    "@dnd-kit/core": "^6.0.5",
    "@dnd-kit/sortable": "^7.0.1",
    "@storybook/addon-actions": "^6.5.10",
    "@storybook/addon-essentials": "^6.5.10",
    "@storybook/addon-interactions": "^6.5.10",
    "@storybook/addon-links": "^6.5.10",
    "@storybook/builder-webpack5": "^6.5.10",
    "@storybook/manager-webpack5": "^6.5.10",
    "@storybook/react": "^6.5.10",
    "@storybook/testing-library": "^0.0.13",
    "@types/jest": "^29.0.0",
    "@types/node": "^18.7.14",
    "@typescript-eslint/eslint-plugin": "^5.36.1",
    "@typescript-eslint/parser": "^5.36.1",
    "babel-loader": "^8.2.5",
    "chromatic": "^6.8.0",
    "eslint": "^8.23.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-storybook": "^0.6.4",
    "jest": "^29.0.1",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rimraf": "^3.0.2",
    "ts-jest": "^28.0.8",
    "typescript": "^4.8.2",
    "yarn": "^1.22.19"
  },
  "files": [
    "lib/**/*"
  ],
  "dependencies": {}
}
