-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "tweeno",
"version": "1.1.3",
"repository": {
"type": "git",
"url": "https://github.com/unstoppablecarl/Tweeno"
},
"description": "Tweeno is a refactored and improved version of [Tween.js](http://github.com/sole/tween.js) A super simple, fast and easy to use tweening engine which incorporates optimized Robert Penner's equations.",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha ./test/*.js -R spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/*.js --report html -- -R spec",
"watchify": "watchify ./index.js -o ./tweeno.js -v -d"
},
"author": "Carl Olsen <unstoppablecarlolsen@gmail.com>",
"keywords": [
"tween",
"interpolation"
],
"license": "MIT",
"devDependencies": {
"grunt": "~0.4.4",
"grunt-browserify": "~2.0.7",
"grunt-contrib-uglify": "~0.4.0",
"mocha": "~1.18.2",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "~2.10.0",
"chai": "~1.9.1",
"grunt-contrib-watch": "~0.6.1"
},
"dependencies": {}
}