智慧水务管理系统 - 精河县供水工程综合管理平台

package.json 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@tweenjs/tween.js",
  3. "description": "Simple and fast tweening engine with optimised Robert Penner's equations.",
  4. "version": "25.0.0",
  5. "type": "module",
  6. "main": "dist/tween.cjs",
  7. "types": "dist/tween.d.ts",
  8. "module": "dist/tween.esm.js",
  9. "exports": {
  10. ".": {
  11. "import": "./dist/tween.esm.js",
  12. "require": "./dist/tween.cjs",
  13. "types": "./dist/tween.d.ts"
  14. }
  15. },
  16. "files": [
  17. "dist",
  18. "README.md",
  19. "LICENSE"
  20. ],
  21. "homepage": "https://github.com/tweenjs/tween.js",
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/tweenjs/tween.js.git"
  25. },
  26. "bugs": {
  27. "url": "https://github.com/tweenjs/tween.js/issues"
  28. },
  29. "license": "MIT",
  30. "keywords": [
  31. "tween",
  32. "interpolation"
  33. ],
  34. "dependencies": {},
  35. "scripts": {
  36. "dev": "(npm run tsc-watch -- --preserveWatchOutput & p1=$!; npm run rollup-build -- --watch & p2=$!; wait $p1 $p2)",
  37. "build": "rimraf dist .tmp && node scripts/write-version.js && npm run tsc && npm run rollup-build",
  38. "rollup-build": "rollup -c ./rollup.config.js",
  39. "tsc": "tsc",
  40. "tsc-watch": "tsc --watch",
  41. "examples": "npx serve .",
  42. "test": "npm run build && npm run test-lint && npm run test-unit",
  43. "test-unit": "nodeunit test/unit/nodeunitheadless.cjs",
  44. "test-lint": "npm run prettier -- --check",
  45. "lint": "npm run prettier -- --write",
  46. "prettier": "prettier .",
  47. "prepare": "npm run build",
  48. "version": "npm test && git add .",
  49. "release:patch": "npm version patch --message 'v%s' && npm publish && npm run _release:push-branch",
  50. "release:minor": "npm version minor --message 'v%s' && npm publish && npm run _release:push-branch",
  51. "release:major": "npm version major --message 'v%s' && npm publish && npm run _release:push-branch",
  52. "_release:push-branch": "git push --follow-tags --set-upstream origin `git rev-parse --abbrev-ref HEAD`"
  53. },
  54. "author": "tween.js contributors (https://github.com/tweenjs/tween.js/graphs/contributors)",
  55. "devDependencies": {
  56. "nodeunit": "^0.11.3",
  57. "prettier": "^3.0.0",
  58. "rimraf": "^3.0.0",
  59. "rollup": "3.20.7",
  60. "rollup-plugin-dts": "5.3.0",
  61. "tslib": "^1.10.0",
  62. "typescript": "5.0.4"
  63. }
  64. }