mirror of
https://github.com/tweenjs/tween.js.git
synced 2025-12-08 20:16:12 +00:00
55 lines
1.7 KiB
JSON
55 lines
1.7 KiB
JSON
{
|
|
"name": "@tweenjs/tween.js",
|
|
"description": "Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.",
|
|
"version": "18.6.0",
|
|
"main": "dist/tween.cjs.js",
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/tween.esm.js",
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"homepage": "https://github.com/tweenjs/tween.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tweenjs/tween.js.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/tweenjs/tween.js/issues"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"tween",
|
|
"interpolation"
|
|
],
|
|
"dependencies": {},
|
|
"scripts": {
|
|
"build": "rimraf dist && node scripts/write-version.js && npm run tsc && npm run rollup-build && npm run tsc-d.ts && npm run adjust-d.ts",
|
|
"rollup-build": "rollup -c ./rollup.config.js",
|
|
"tsc": "tsc",
|
|
"tsc-d.ts": "tsc --declaration --emitDeclarationOnly --esModuleInterop --outFile dist/index.d.ts",
|
|
"adjust-d.ts": "node scripts/adjust-d.ts.js",
|
|
"test": "npm run build && npm run test-unit && npm run test-lint",
|
|
"test-unit": "nodeunit test/unit/nodeunitheadless.js",
|
|
"test-lint": "eslint 'src/**/*.ts'",
|
|
"lint": "npm run prettier && eslint 'src/**/*.ts' --fix",
|
|
"prettier": "prettier './**/*.{js,ts,md,json,html,css}' --write"
|
|
},
|
|
"author": "tween.js contributors (https://github.com/tweenjs/tween.js/graphs/contributors)",
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^2.8.0",
|
|
"@typescript-eslint/parser": "^2.8.0",
|
|
"eslint": "^6.6.0",
|
|
"eslint-config-prettier": "^6.7.0",
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
"nodeunit": "^0.11.3",
|
|
"prettier": "^1.19.1",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^0.57.1",
|
|
"rollup-plugin-typescript": "^1.0.1",
|
|
"tslib": "^1.10.0",
|
|
"typescript": "^3.7.2"
|
|
}
|
|
}
|