diff options
author | wout <wout@impinc.co.uk> | 2014-07-13 10:32:20 +0200 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-07-13 10:32:20 +0200 |
commit | e9a0d5f5d7074b1cb3d1bd5a00f6a602bd55f983 (patch) | |
tree | 709af264123ce66ebafb8490d84cceb6d5b8b97a /package.json | |
parent | 40bf2f8ecda3f426e7f13e1d891ab1ab6e004116 (diff) | |
download | svg.js-e9a0d5f5d7074b1cb3d1bd5a00f6a602bd55f983.tar.gz svg.js-e9a0d5f5d7074b1cb3d1bd5a00f6a602bd55f983.zip |
Switched to gulp for building
Diffstat (limited to 'package.json')
-rw-r--r--[-rwxr-xr-x] | package.json | 77 |
1 files changed, 49 insertions, 28 deletions
diff --git a/package.json b/package.json index 557d1d3..e67f20a 100755..100644 --- a/package.json +++ b/package.json @@ -1,37 +1,58 @@ { - "name": "svg.js" -, "description": "A lightweight library for manipulating and animating SVG." -, "url": "http://svgjs.com" -, "homepage": "http://svgjs.com" -, "keywords": ["svg", "vector", "graphics", "animation"] -, "author": "Wout Fierens <wout@impinc.co.uk>" -, "main": "dist/svg.js" -, "version": "1.0.0-rc.10" -, "jam": { + "name": "SVG.js", + "version": "1.0.0-rc.10", + "description": "A lightweight library for manipulating and animating SVG.", + "url": "http://svgjs.com", + "homepage": "http://www.svgjs.com", + "keywords": [ + "svg", + "vector", + "graphics", + "animation" + ], + "author": "Wout Fierens <wout@impinc.co.uk>", + "main": "dist/svg.js", + "jam": { "include": [ - "dist/svg.js" - , "README.md" - , "MIT-LICENSE" + "dist/svg.js", + "README.md", + "LICENSE.txt" ] - } -, "maintainers": [ + }, + "maintainers": [ { - "name": "Wout Fierens" - , "email": "wout@woutfierens.com" - , "web": "http://woutfierens.com" - } - ] -, "licenses": [ + "name": "Wout Fierens", + "email": "wout@svgjs.com", + "web": "http://svgjs.com" + }, { - "type": "MIT" - , "url": "http://www.opensource.org/licenses/mit-license.php" + "name": "Alex Ewerlöf", + "email": "alex@userpixel.com", + "web": "http://www.ewerlof.name" } - ] -, "repositories": [ + ], + "licenses": [ { - "type": "git" - , "url": "https://github.com/wout/svg.js.git" + "type": "MIT", + "url": "http://www.opensource.org/licenses/mit-license.php" } - ] -, "github": "https://github.com/wout/svg.js" + ], + "repository": { + "type": "git", + "url": "https://github.com/wout/svg.js.git" + }, + "github": "https://github.com/wout/svg.js", + "license": "MIT", + "devDependencies": { + "gulp": "^3.8.6", + "gulp-clean": "^0.3.1", + "gulp-concat": "^2.3.3", + "gulp-gzip": "0.0.8", + "gulp-header": "^1.0.5", + "gulp-rename": "^1.2.0", + "gulp-rimraf": "^0.1.0", + "gulp-size": "^0.4.0", + "gulp-uglify": "^0.3.1", + "gulp-wrapper": "^0.1.42" + } } |