diff --git a/bower.json b/bower.json index f90bdedb..b88f1b96 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,21 @@ { "name": "paper", "version": "0.9.17", + "description": "The Swiss Army Knife of Vector Graphics Scripting", + "homepage": "http://paperjs.org", + "repository": { + "type": "git", + "url": "git://github.com/paperjs/paper.js" + }, + "authors": [ + "Jürg Lehni (http://scratchdisk.com)", + "Jonathan Puckey (http://studiomoniker.com)" + ], + "license": "MIT", + "keywords": [ + "vector", "graphic", "graphics", "2d", "geometry", "bezier", "curve", + "curves", "path", "paths", "canvas", "svg", "paper", "paper.js" + ], "main": "dist/paper.js", "ignore": [ "build", diff --git a/build/publish.sh b/build/publish.sh index e7e425cc..0d8ed6de 100755 --- a/build/publish.sh +++ b/build/publish.sh @@ -27,6 +27,7 @@ echo "Commiting Version" # Add changed json configuration files git add -u package.json git add -u bower.json +git add -u component.json # Add all changed files in dist git add -u dist # Commit diff --git a/component.json b/component.json new file mode 100644 index 00000000..d8022e08 --- /dev/null +++ b/component.json @@ -0,0 +1,12 @@ +{ + "name": "paper", + "version": "0.9.17", + "description": "The Swiss Army Knife of Vector Graphics Scripting", + "repo": "paperjs/paper.js", + "license": "MIT", + "keywords": [ + "vector", "graphic", "graphics", "2d", "geometry", "bezier", "curve", + "curves", "path", "paths", "canvas", "svg", "paper", "paper.js" + ], + "scripts": ["./dist/paper.js"] +} \ No newline at end of file diff --git a/package.json b/package.json index 1cc5e298..b4c47988 100644 --- a/package.json +++ b/package.json @@ -3,11 +3,19 @@ "version": "0.9.17", "description": "The Swiss Army Knife of Vector Graphics Scripting", "homepage": "http://paperjs.org", - "repository": "git://github.com/paperjs/paper.js", + "repository": { + "type": "git", + "url": "git://github.com/paperjs/paper.js" + }, "contributors": [ "Jürg Lehni (http://scratchdisk.com)", "Jonathan Puckey (http://studiomoniker.com)" ], + "license": "MIT", + "keywords": [ + "vector", "graphic", "graphics", "2d", "geometry", "bezier", "curve", + "curves", "path", "paths", "canvas", "svg", "paper", "paper.js" + ], "main": "./dist/paper-node.js", "files": [ "AUTHORS.md", @@ -29,16 +37,5 @@ "prepro": "~0.8.1", "grunt": "~0.4.1", "grunt-contrib-uglify": "~0.2.2" - }, - "keywords": [ - "vector", - "graphic", - "graphics", - "bezier", - "curve", - "curves", - "canvas", - "svg", - "paper.js" - ] + } }