forked from niklasnordlund/canvg-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "canvg-browser",
"version": "0.0.5",
"description": "Javascript SVG parser and renderer on Canvas, adapted for CommonJS",
"main": "index.js",
"homepage": "https://github.com/bpmn-io/canvg-browser",
"keywords": [
"javascript",
"client",
"browser",
"svg",
"canvas",
"canvg",
"browserify"
],
"scripts": {
"test": "karma start test/config/karma.unit.js",
"test:watch": "karma start test/config/karma.unit.js --no-single-run --auto-watch"
},
"author": "Ricardo Matias <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/bpmn-io/canvg-browser.git"
},
"license": "MIT",
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.5.0",
"karma": "^0.13.22",
"karma-browserify": "^5.0.2",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.24",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.5",
"stringify": "^5.1.0",
"watchify": "^3.7.0"
},
"dependencies": {
"rgbcolor": "0.0.4",
"stackblur": "^1.0.0",
"xmldom": "^0.1.22"
},
"bugs": {
"url": "https://github.com/bpmn-io/canvg-browser/issues"
}
}