package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "timm",
  3. "version": "1.7.1",
  4. "description": "Immutability helpers with fast reads and acceptable writes",
  5. "author": "Guillermo Grau Panea",
  6. "license": "MIT",
  7. "keywords": [
  8. "immutability"
  9. ],
  10. "homepage": "http://guigrpa.github.io/timm/",
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/guigrpa/timm.git"
  14. },
  15. "main": "lib/timm.js",
  16. "types": "lib/timm.d.ts",
  17. "scripts": {
  18. "typecheck": "tsc --pretty",
  19. "lint": "eslint src/timm.ts",
  20. "jest": "yarn test --watch",
  21. "test": "jest --coverage src",
  22. "compile": "yarn compile:clean && yarn compile:main && yarn compile:types",
  23. "compile:clean": "rm -rf ./lib",
  24. "compile:main": "babel src -d lib --extensions '.ts'",
  25. "compile:types": "yarn typecheck",
  26. "docs": "extract-docs --template docs/README_TEMPLATE.md --output README.md",
  27. "build": "yarn lint && yarn compile && yarn test && yarn docs && yarn xxl",
  28. "xxl": "xxl",
  29. "benchmarks": "node tools/benchmarks",
  30. "prettier": "prettier --single-quote --trailing-comma es5 --write \"src/**/*.[jt]s\""
  31. },
  32. "dependencies": {},
  33. "devDependencies": {
  34. "@babel/cli": "^7.11.6",
  35. "@babel/core": "^7.11.6",
  36. "@babel/preset-env": "^7.11.5",
  37. "@babel/preset-typescript": "^7.10.1",
  38. "@typescript-eslint/eslint-plugin": "^4.1.1",
  39. "@typescript-eslint/parser": "^4.1.1",
  40. "eslint": "^7.9.0",
  41. "eslint-config-prettier": "^6.11.0",
  42. "oao": "^2.0.0",
  43. "typescript": "^4.0.2",
  44. "babel-jest": "^26.3.0",
  45. "chalk": "1.1.3",
  46. "extract-docs": "^1.6.1",
  47. "immutability-helper": "^2.8.1",
  48. "immutable": "3.8.2",
  49. "jest": "^26.4.2",
  50. "lodash": "^4.17.20",
  51. "prettier": "^2.1.2",
  52. "seamless-immutable": "^7.1.4",
  53. "xxl": "^1.3.0"
  54. }
  55. }