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.",
|
2014-02-11 17:46:56 +00:00
|
|
|
"homepage": "http://fabricjs.com/",
|
2016-04-29 00:21:40 +00:00
|
|
|
"version": "1.6.1",
|
2012-05-11 11:31:30 +00:00
|
|
|
"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"
|
|
|
|
|
],
|
2014-06-18 03:04:30 +00:00
|
|
|
"browser" : {
|
|
|
|
|
"canvas" : false,
|
2014-08-26 08:40:53 +00:00
|
|
|
"fs": false,
|
2014-06-18 03:04:30 +00:00
|
|
|
"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"
|
|
|
|
|
},
|
2014-02-23 21:53:55 +00:00
|
|
|
"license": "MIT",
|
2011-08-16 19:57:07 +00:00
|
|
|
"scripts": {
|
2015-04-14 16:40:50 +00:00
|
|
|
"build": "node build.js modules=ALL exclude=json,gestures",
|
2015-04-23 09:47:23 +00:00
|
|
|
"test": "node test.js",
|
|
|
|
|
"lint": "jshint src && jscs src",
|
|
|
|
|
"lint_tests": "jshint test/unit --config .jshintrc_tests",
|
|
|
|
|
"export_dist_to_site": "cp dist/fabric.js ../fabricjs.com/lib/fabric.js",
|
|
|
|
|
"export_tests_to_site": "cp test/unit/*.js ../fabricjs.com/test/unit",
|
|
|
|
|
"all": "npm run build && npm run test && npm run lint && npm run lint_tests && npm run export_dist_to_site && npm run export_tests_to_site"
|
2012-05-11 11:31:30 +00:00
|
|
|
},
|
2016-04-23 03:16:30 +00:00
|
|
|
"optionalDependencies": {
|
2016-04-02 10:08:50 +00:00
|
|
|
"canvas": "1.3.x",
|
2016-04-07 18:36:35 +00:00
|
|
|
"jsdom": "3.x.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": {
|
2016-04-15 05:06:56 +00:00
|
|
|
"uglify-js": "2.6.x",
|
2015-08-17 21:46:47 +00:00
|
|
|
"jscs": "2.1.x",
|
2015-08-04 23:25:35 +00:00
|
|
|
"jshint": "2.8.x",
|
2015-12-26 13:33:00 +00:00
|
|
|
"qunit": "0.7.x",
|
|
|
|
|
"istanbul": "0.4.x"
|
2014-02-19 12:48:59 +00:00
|
|
|
},
|
|
|
|
|
"engines": {
|
2015-09-24 17:45:12 +00:00
|
|
|
"node": ">=0.4.0"
|
2012-07-29 20:48:34 +00:00
|
|
|
},
|
2013-12-14 11:10:42 +00:00
|
|
|
"main": "./dist/fabric.js"
|
2013-04-04 12:05:43 +00:00
|
|
|
}
|