package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "typed-assert",
  3. "version": "1.0.9",
  4. "description": "typesafe assertion library for TypeScript 3.7+",
  5. "main": "build/index.js",
  6. "scripts": {
  7. "test:src": "jest src/**/*.test.ts",
  8. "test:build": "jest build/**/*.test.js",
  9. "clean:doc": "rm -rf doc && rm -rf API.md",
  10. "build:doc": "npm run clean:doc && typedoc && sed s/README.md/API.md/ doc/README.md > API.md && rm -rf doc",
  11. "clean:ts": "rm -rf build",
  12. "build:ts": "npm run clean:ts && tsc -p .",
  13. "build": "npm run build:doc && npm run build:ts"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/elierotenberg/typed-assert.git"
  18. },
  19. "keywords": [
  20. "assert",
  21. "typescript"
  22. ],
  23. "author": "Elie Rotenberg <elie@rotenberg.io>",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/elierotenberg/typed-assert/issues"
  27. },
  28. "homepage": "https://github.com/elierotenberg/typed-assert#readme",
  29. "devDependencies": {
  30. "@types/jest": "^27.4.0",
  31. "@types/node": "^17.0.18",
  32. "@typescript-eslint/eslint-plugin": "^5.12.0",
  33. "@typescript-eslint/parser": "^5.12.0",
  34. "eslint": "^8.9.0",
  35. "eslint-config-prettier": "^8.3.0",
  36. "eslint-plugin-import": "^2.25.4",
  37. "eslint-plugin-prettier": "^4.0.0",
  38. "jest": "^27.5.1",
  39. "prettier": "^2.5.1",
  40. "ts-jest": "^27.1.3",
  41. "typedoc": "^0.22.11",
  42. "typedoc-plugin-markdown": "^3.11.14",
  43. "typescript": "^4.5.5"
  44. }
  45. }