package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "countup.js",
  3. "description": "Animates a numerical value by counting to it",
  4. "version": "2.7.0",
  5. "license": "MIT",
  6. "author": "Jamie Perkins",
  7. "main": "./dist/countUp.umd.js",
  8. "module": "./dist/countUp.min.js",
  9. "types": "./dist/countUp.d.ts",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/inorganik/countUp.js.git"
  13. },
  14. "scripts": {
  15. "build": "npm run clean && tsc && rollup -c rollup.config.js",
  16. "clean": "rimraf dist/countUp.*",
  17. "lint": "eslint -c .eslintrc.js --ext .ts ./src",
  18. "serve": "http-server -o -c-1 ./",
  19. "start": "npm run build && npm run serve",
  20. "test": "jest",
  21. "test:watch": "jest --watch"
  22. },
  23. "devDependencies": {
  24. "@types/jest": "^28.1.8",
  25. "@typescript-eslint/eslint-plugin": "^5.41.0",
  26. "@typescript-eslint/eslint-plugin-tslint": "^5.41.0",
  27. "@typescript-eslint/parser": "^5.41.0",
  28. "eslint": "^8.26.0",
  29. "eslint-plugin-import": "^2.26.0",
  30. "http-server": "^14.1.1",
  31. "jest": "^28.1.3",
  32. "jest-environment-jsdom": "^28.1.3",
  33. "rimraf": "^5.0.0",
  34. "rollup": "^2.79.1",
  35. "rollup-plugin-terser": "^7.0.2",
  36. "ts-jest": "^28.0.8",
  37. "typescript": "^4.8.4"
  38. }
  39. }