kute.js/package.json

81 lines
3.2 KiB
JSON
Raw Normal View History

{
"name": "kute.js",
2021-12-29 17:42:20 +01:00
"version": "2.2.3",
"description": "JavaScript animation engine",
2020-06-09 22:06:26 +02:00
"main": "dist/kute.min.js",
"module": "dist/kute.esm.js",
"jsnext": "src/index.js",
2021-11-13 11:24:30 +01:00
"types": "types/index.d.ts",
2020-06-09 22:06:26 +02:00
"files": [
2021-12-10 08:01:35 +01:00
"dist",
"types",
"src"
2020-06-09 22:06:26 +02:00
],
"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",
"build1": "npm-run-all --parallel copy-build build-*",
"build": "npm run lint:js && npm-run-all --parallel copy-build build-*",
2020-06-09 22:06:26 +02:00
"custom": "rollup -c --environment",
"fix:js": "eslint src/ --config .eslintrc --fix",
"lint:js": "eslint src/ --config .eslintrc",
"copy-build": "rollup --environment OUTPUTFILE:demo/src/kute.min.js,DIST:standard,MIN:true,FORMAT:umd -c",
2020-06-09 22:06:26 +02:00
"build-standard": "rollup --environment DIST:standard,MIN:false,FORMAT:umd -c",
"build:ts": "tsc -d",
2020-06-09 22:06:26 +02:00
"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",
2020-06-24 07:39:57 +02:00
"build-base": "rollup --environment OUTPUTFILE:demo/src/kute-base.js,DIST:base,MIN:false,FORMAT:umd -c",
"build-base-min": "rollup --environment OUTPUTFILE:demo/src/kute-base.min.js,DIST:base,MIN:true,FORMAT:umd -c",
"build-extra": "rollup --environment OUTPUTFILE:demo/src/kute-extra.js,DIST:extra,MIN:false,FORMAT:umd -c",
"build-extra-min": "rollup --environment OUTPUTFILE:demo/src/kute-extra.min.js,DIST:extra,MIN:true,FORMAT:umd -c",
2020-06-23 18:38:58 +02:00
"polyfill": "npm-run-all --parallel polyfill-unminified polyfill-minified copy-polyfill copy-polyfill-legacy",
"copy-polyfill-legacy": "rollup --environment INPUTFILE:src/util/polyfill-legacy.js,OUTPUTFILE:demo/src/polyfill-legacy.min.js,MIN:true -c rollup.polyfill.js",
2020-06-20 11:23:25 +02:00
"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": {
2021-12-10 08:16:06 +01:00
"cubic-bezier-easing": "^1.0.18",
"minifill": "^0.0.16",
"shorter-js": "^0.2.6",
2021-12-27 16:33:05 +01:00
"svg-path-commander": "0.1.23"
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": "^9.0.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.7.0",
2020-06-09 22:06:26 +02:00
"npm-run-all": "^4.1.5",
"rollup": "^2.38.4",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.2"
2016-09-21 01:42:03 +02:00
}
}