tween.js/package.json
2019-09-01 15:39:49 -07:00

37 lines
1.2 KiB
JSON

{
"name": "@tweenjs/tween.js",
"description": "Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.",
"version": "17.5.0",
"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-correctness && npm run test-style",
"test-unit": "nodeunit test/unit/nodeunitheadless.js",
"test-correctness": "jshint --config test/jshintrc src/Tween.js",
"test-style": "jscs --config test/jscs.json src/Tween.js",
"semantic-release": "semantic-release"
},
"author": "tween.js contributors (https://github.com/tweenjs/tween.js/graphs/contributors)",
"devDependencies": {
"jscs": "^2.11.0",
"jshint": "^2.9.4",
"nodeunit": "^0.9.5",
"rollup": "^0.57.1"
}
}