fabric.js/package.json

69 lines
1.9 KiB
JSON
Raw Normal View History

2016-11-12 23:57:55 +00:00
{
"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/",
2017-09-17 10:13:19 +00:00
"version": "2.0.0-beta.7",
"author": "Juriy Zaytsev <kangax@gmail.com>",
2016-08-28 21:02:47 +00:00
"contributors": [
{
"name": "Andrea Bogazzi",
"email": "andreabogazzi79@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,
"http": false,
"https": false,
2017-10-31 12:04:54 +00:00
"xmldom": false,
2017-10-31 12:05:10 +00:00
"url": 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": {
"build": "node build.js modules=ALL exclude=gestures,accessors",
"build:watch": "onchange 'src/**/**' 'HEADER.js' 'lib/**/**' -- npm run build_export",
2016-06-14 12:24:17 +00:00
"build_with_gestures": "node build.js modules=ALL exclude=json",
"build_export": "npm run build && npm run export_dist_to_site",
"test": "node test.js",
"lint": "eslint --config .eslintrc.json src",
"lint_tests": "eslint test/unit --config .eslintrc_tests",
2016-12-03 22:01:49 +00:00
"export_dist_to_site": "cp dist/fabric.js ../fabricjs.com/lib/fabric.js && cp -r src HEADER.js lib ../fabricjs.com/build/files/",
"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"
},
"optionalDependencies": {
"canvas": "1.6.x",
2017-02-19 04:47:32 +00:00
"jsdom": "9.x.x",
2013-03-14 12:24:45 +00:00
"xmldom": "0.1.x"
2012-05-25 11:40:13 +00:00
},
"devDependencies": {
"uglify-js": "3.1.x",
"eslint": "4.7.x",
"qunit": "1.x.x",
"istanbul": "0.4.x",
"onchange": "^3.x.x"
2014-02-19 12:48:59 +00:00
},
"engines": {
2017-02-19 04:47:32 +00:00
"node": ">=4.0.0"
},
2013-12-14 11:10:42 +00:00
"main": "./dist/fabric.js"
2013-04-04 12:05:43 +00:00
}