fabric.js/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
2014-02-11 17:46:56 +00:00
"homepage": "http://fabricjs.com/",
2014-11-28 13:09:23 +00:00
"version": "1.4.13",
"author": "Juriy Zaytsev <kangax@gmail.com>",
2014-02-19 12:48:59 +00:00
"keywords": [
"canvas",
"graphic",
"graphics",
"SVG",
"node-canvas",
"parser",
"HTML5",
"object model"
],
"browser" : {
"canvas" : false,
"fs": false,
"jsdom": false,
"xmldom": false
},
2014-02-19 12:48:59 +00:00
"repository": {
"type": "git",
"url": "https://github.com/kangax/fabric.js"
},
"bugs": {
"url": "https://github.com/kangax/fabric.js/issues"
},
"license": "MIT",
"scripts": {
2013-01-17 18:04:02 +00:00
"build": "node build.js modules=ALL exclude=json,cufon,gestures",
2015-01-20 10:03:11 +00:00
"test": "node test.js && jshint src"
},
"dependencies": {
2014-06-08 16:53:26 +00:00
"canvas": "1.1.x",
2014-11-01 16:46:11 +00:00
"jsdom": "1.1.x",
2013-03-14 12:24:45 +00:00
"xmldom": "0.1.x"
2012-05-25 11:40:13 +00:00
},
"devDependencies": {
2014-11-01 16:46:11 +00:00
"execSync": "1.0.x",
2014-03-08 23:32:27 +00:00
"uglify-js": "2.4.x",
2015-03-30 10:05:43 +00:00
"jscs": "1.12.x",
2015-02-07 01:41:04 +00:00
"jshint": "2.6.x",
2014-11-03 13:48:47 +00:00
"qunit": "0.7.2",
2014-07-15 22:48:14 +00:00
"istanbul": "0.3.x"
2014-02-19 12:48:59 +00:00
},
"engines": {
"node": ">=0.4.0 && <1.0.0"
},
2013-12-14 11:10:42 +00:00
"main": "./dist/fabric.js"
2013-04-04 12:05:43 +00:00
}