2012-05-11 11:31:30 +00:00
|
|
|
{
|
|
|
|
|
"name": "fabric",
|
2012-05-28 13:22:37 +00:00
|
|
|
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
|
2013-08-27 14:23:23 +00:00
|
|
|
"version": "1.2.10",
|
2012-05-11 11:31:30 +00:00
|
|
|
"author": "Juriy Zaytsev <kangax@gmail.com>",
|
2011-08-16 19:57:07 +00:00
|
|
|
"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"
|
|
|
|
|
}],
|
2011-08-16 19:57:07 +00:00
|
|
|
"scripts": {
|
2013-01-17 18:04:02 +00:00
|
|
|
"build": "node build.js modules=ALL exclude=json,cufon,gestures",
|
2013-03-09 14:28:14 +00:00
|
|
|
"test": "node test.js && jshint src"
|
2012-05-11 11:31:30 +00:00
|
|
|
},
|
2011-08-16 19:57:07 +00:00
|
|
|
"dependencies": {
|
2013-08-17 17:56:41 +00:00
|
|
|
"canvas": "1.0.x",
|
2013-07-28 13:33:25 +00:00
|
|
|
"jsdom": "0.7.x",
|
2013-03-14 12:24:45 +00:00
|
|
|
"xmldom": "0.1.x"
|
2012-05-25 11:40:13 +00:00
|
|
|
},
|
2012-07-29 20:48:34 +00:00
|
|
|
"devDependencies": {
|
2012-10-14 00:53:12 +00:00
|
|
|
"qunit": "0.5.x",
|
2013-07-13 09:09:48 +00:00
|
|
|
"jshint": "2.1.x",
|
|
|
|
|
"uglify-js": "2.3.x",
|
|
|
|
|
"execSync": "0.0.x",
|
|
|
|
|
"plato": "0.6.x"
|
2012-07-29 20:48:34 +00:00
|
|
|
},
|
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"
|
2013-04-04 12:05:43 +00:00
|
|
|
}
|