anymation
Version:
Simple & easy animation/tweener
54 lines (53 loc) • 1.37 kB
JSON
{
"name": "anymation",
"version": "1.1.0",
"description": "Simple & easy animation/tweener",
"main": "index.js",
"scripts": {
"test": "tape test/*.js",
"cover": "browserify -t coverify test/index-test.js --bare | node | coverify",
"lint": "jshint .",
"validate": "npm ls",
"preflight": "npm run validate && npm run lint && npm run test",
"build-debug": "browserify --standalone anymation index.js > dist/anymation.js",
"build-min": "browserify --standalone anymation index.js | uglifyjs -c -m > dist/anymation-min.js",
"build": "npm run preflight && npm run build-debug && npm run build-min"
},
"keywords": [
"animation",
"tweening",
"tween",
"tweener",
"animate"
],
"author": "Scott Glazer",
"license": "MIT",
"dependencies": {
"extend": "^3.0.0",
"right-now": "^1.0.0"
},
"devDependencies": {
"browserify": "^12.0.1",
"coverify": "^1.4.1",
"jshint": "^2.8.0",
"tape": "^4.4.0",
"uglify-js": "^2.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/scottglz/anymation"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
}
}