kute.js/package.json

70 lines
2.5 KiB
JSON
Raw Normal View History

{
"name": "kute.js",
2020-06-20 12:24:37 +02:00
"version": "2.0.7",
2020-06-09 22:06:26 +02:00
"description": "JavaScript animation engine of the future is called KUTE.js.",
"main": "dist/kute.min.js",
"module": "dist/kute.esm.js",
"jsnext": "src/index.js",
"files": [
"dist/*.{js,map}",
"src/**/*.{js,map}",
"src/*.{js,map}"
],
"scripts": {
2016-09-21 00:34:20 +02:00
"test": "echo \"Error: no test specified\" && exit 1",
2020-06-09 22:06:26 +02:00
"help": "rollup --help",
"build": "npm-run-all --parallel copy-build build-*",
"custom": "rollup -c --environment",
"copy-build": "rollup -c --environment INPUTFILE:src/index.js,OUTPUTFILE:demo/src/kute.min.js,DIST:standard,MIN:true,FORMAT:umd -c",
"build-standard": "rollup --environment DIST:standard,MIN:false,FORMAT:umd -c",
"build-standard-min": "rollup --environment DIST:standard,MIN:true,FORMAT:umd -c",
"build-standard-esm": "rollup --environment DIST:standard,MIN:false,FORMAT:esm -c",
"build-standard-esm-min": "rollup --environment DIST:standard,MIN:true,FORMAT:esm -c",
"build-base": "rollup --environment DIST:base,MIN:false,FORMAT:umd -c",
"build-base-min": "rollup --environment DIST:base,MIN:true,FORMAT:umd -c",
"build-extra": "rollup --environment DIST:extra,MIN:false,FORMAT:umd -c",
"build-extra-min": "rollup --environment DIST:extra,MIN:true,FORMAT:umd -c",
2020-06-20 11:23:25 +02:00
"polyfill": "npm-run-all --parallel polyfill-unminified polyfill-minified copy-polyfill",
"copy-polyfill": "rollup --environment OUTPUTFILE:demo/src/polyfill.min.js,MIN:true -c rollup.polyfill.js",
"polyfill-unminified": "rollup --environment MIN:false -c rollup.polyfill.js",
"polyfill-minified": "rollup --environment MIN:true -c rollup.polyfill.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thednp/kute.js.git"
},
"keywords": [
"kute.js",
"svg morph",
"svg transform",
2020-06-09 22:06:26 +02:00
"css3 transform",
"matrix transform",
"tweening engine",
2015-11-02 00:24:55 +01:00
"animation engine",
2016-09-22 04:26:43 +02:00
"javascript animation engine",
"javascript animation",
2020-06-09 22:06:26 +02:00
"animation",
2016-09-22 04:26:43 +02:00
"native javascript"
],
"author": "thednp",
"license": "MIT",
"bugs": {
"url": "https://github.com/thednp/kute.js/issues"
},
2016-02-05 23:12:54 +01:00
"homepage": "http://thednp.github.io/kute.js",
2016-09-21 01:42:03 +02:00
"dependencies": {
2020-06-09 22:06:26 +02:00
"cubic-bezier-easing": "^1.0.2",
"minifill": "^0.0.8",
2020-06-20 11:23:25 +02:00
"shorter-js": "^0.1.0"
2020-06-09 22:06:26 +02:00
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"npm-run-all": "^4.1.5",
"rollup": "^1.32.1",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-terser": "^5.3.0"
2016-09-21 01:42:03 +02:00
}
}