forked from fabricjs/fabric.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"homepage": "http://fabricjs.com/",
"version": "1.4.10",
"author": "Juriy Zaytsev <[email protected]>",
"keywords": [
"canvas",
"graphic",
"graphics",
"SVG",
"node-canvas",
"parser",
"HTML5",
"object model"
],
"browser" : {
"canvas" : false,
"jsdom": false,
"xmldom": false
},
"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=json,cufon,gestures",
"test": "node test.js && jshint src"
},
"dependencies": {
"canvas": "1.1.x",
"jsdom": "0.11.x",
"xmldom": "0.1.x"
},
"devDependencies": {
"execSync": "0.0.x",
"uglify-js": "2.4.x",
"jscs": "1.5.x",
"jshint": "2.5.x",
"qunit": "0.7.x",
"istanbul": "0.3.x"
},
"engines": {
"node": ">=0.4.0 && <1.0.0"
},
"main": "./dist/fabric.js"
}