-
Notifications
You must be signed in to change notification settings - Fork 219
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
52
53
54
55
56
{
"name": "rasterizehtml",
"title": "rasterizeHTML.js",
"version": "1.3.1",
"description": "Renders HTML into the browser's canvas.",
"keywords": [
"canvas",
"HTML"
],
"homepage": "http://www.github.com/cburgmer/rasterizeHTML.js",
"bugs": "https://github.com/cburgmer/rasterizeHTML.js/issues",
"license": "MIT",
"author": {
"name": "Christoph Burgmer",
"email": "[email protected]"
},
"directories": {
"lib": "./src/",
"example": "./examples/"
},
"main": "dist/rasterizeHTML.js",
"types": "dist/rasterizeHTML.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/cburgmer/rasterizeHTML.js.git"
},
"dependencies": {
"inlineresources": "^1.0.1",
"sane-domparser-error": "~0.2.0",
"url": "~0.11.0",
"xmlserializer": "~0.6.0"
},
"devDependencies": {
"grunt": "^1.4.1",
"grunt-browserify": "^6.0.0",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^2.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-jasmine": "^2.2.0",
"grunt-contrib-jshint": "^3.1.1",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-umd": "^3.0.0",
"imagediff": "git://github.com/HumbleSoftware/js-imagediff.git#5edce005fe",
"jasmine-core": "^4.0.0",
"prettier": "^2.5.1",
"puppeteer": "^13.0.1"
},
"prettier": {
"tabWidth": 4
},
"scripts": {
"test": "grunt && prettier -c test src Gruntfile.js && ./test/integrationTest.js"
}
}