{
  "name": "leetcode-test-utils",
  "version": "0.1.3",
  "description": "leetcode case test helper to build initial data structure",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "type": "module",
  "types": "dist/index.d.ts",
  "scripts": {
    "dev": "tsc --watch",
    "build": "rollup -c",
    "test": "jest --coverage",
    "release": "npm run build && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sicau-hsuyang/leetcode-test-utils.git"
  },
  "keywords": [
    "leetcode",
    "test-utils"
  ],
  "author": "JohnYang",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sicau-hsuyang/leetcode-test-utils/issues"
  },
  "homepage": "https://github.com/sicau-hsuyang/leetcode-test-utils#readme",
  "devDependencies": {
    "@jest/globals": "^29.5.0",
    "@rollup/plugin-node-resolve": "^15.2.1",
    "@types/jest": "^29.5.0",
    "@types/node": "^18.15.11",
    "jest": "^29.5.0",
    "rollup": "^3.28.1",
    "rollup-plugin-typescript2": "^0.35.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.4"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": ".",
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "collectCoverageFrom": [
      "src/**/*.(t|j)s",
      "!src/index.ts"
    ],
    "coverageDirectory": "./coverage",
    "testEnvironment": "node"
  },
  "dependencies": {
    "node-clipboardy": "^1.0.3"
  }
}
