forked from tweenjs/tween.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "@tweenjs/tween.js",
"description": "Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.",
"version": "18.4.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": "node scripts/write-version.js && npm run rollup-build && node scripts/remove-version.js",
"rollup-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"
}
}