fabric.js/package.json

28 lines
855 B
JSON
Raw Normal View History

{
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
2013-01-17 18:04:02 +00:00
"version": "1.0.2",
"author": "Juriy Zaytsev <kangax@gmail.com>",
"keywords": ["canvas", "graphic", "graphics", "SVG", "node-canvas", "parser", "HTML5", "object model"],
2011-11-28 04:59:18 +00:00
"repository": "git://github.com/kangax/fabric.js",
2012-02-14 17:50:11 +00:00
"licenses": [{
"type": "MIT",
"url": "http://github.com/kangax/fabric.js/raw/master/LICENSE"
}],
"scripts": {
2013-01-17 18:04:02 +00:00
"build": "node build.js modules=ALL exclude=json,cufon,gestures",
"test": "node test.js"
},
"dependencies": {
2013-01-17 18:00:01 +00:00
"canvas": "~1.0.0",
"jsdom": ">=0.2.3",
2012-05-30 11:58:08 +00:00
"xmldom": ">=0.1.7"
2012-05-25 11:40:13 +00:00
},
"devDependencies": {
"qunit": "0.5.x",
"jshint": "0.9.x",
"uglify-js": "1.3.x"
},
2013-01-17 18:04:02 +00:00
"engines": { "node": ">=0.4.0 && <1.0.0" },
2012-05-25 11:40:13 +00:00
"main": "./dist/all.js"
}