forked from bubkoo/html-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.13 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
{
"name": "bud-html-to-image",
"version": "0.1.2",
"description": "Generates an image from a DOM node using HTML5 canvas.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*.d.ts",
"lib/*.js"
],
"directories": {
"lib": "lib/"
},
"keywords": [
"screenshot",
"cavas",
"html",
"dom",
"render",
"image",
"vector",
"svg"
],
"author": {
"name": "Budacode",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/budacode/html-to-image.git"
},
"bugs": {
"url": "https://github.com/budacode/html-to-image/issues"
},
"homepage": "https://github.com/budacode/html-to-image#readme",
"devDependencies": {
"husky": "^0.14.3",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"rimraf": "^2.6.2",
"typescript": "^3.0.3"
},
"scripts": {
"lint": "tslint ./src/*.ts -c tslint.json -p tsconfig.json --fix",
"clean": "rimraf lib",
"build": "tsc",
"prebuild": "npm run lint",
"prepublish": "npm run build",
"precommit": "npm run lint"
}
}