tween.js/package.json
Michael Casebolt fc6a40bf63 18.2.2
2019-09-09 02:09:37 -07:00

34 lines
996 B
JSON

{
"name": "@tweenjs/tween.js",
"description": "Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.",
"version": "18.2.2",
"main": "dist/tween.cjs.js",
"module": "dist/tween.esm.js",
"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": "rollup -c ./rollup.config.js",
"test": "npm run build && npm run test-unit && npm run test-lint",
"test-unit": "nodeunit test/unit/nodeunitheadless.js",
"test-lint": "eslint src/Tween.js"
},
"author": "tween.js contributors (https://github.com/tweenjs/tween.js/graphs/contributors)",
"devDependencies": {
"eslint": "^6.3.0",
"nodeunit": "^0.9.5",
"rollup": "^0.57.1"
}
}