forked from tweenjs/tween.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.11 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": "17.2.0",
"main": "src/Tween.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": {
"test": "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 pre && npm publish && semantic-release post"
},
"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",
"semantic-release": "^6.3.2"
}
}