forked from bostrom/text-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.45 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
57
58
59
60
{
"name": "text-to-image",
"version": "2.1.1",
"description": "A library for generating an image data URI representing an image containing the text of your choice.",
"author": "Fredrik Boström",
"homepage": "https://github.com/bostrom/text-to-image#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bostrom/text-to-image.git"
},
"bugs": {
"url": "https://github.com/bostrom/text-to-image/issues"
},
"keywords": [
"text",
"image",
"image generator",
"text generator",
"canvas",
"twitter"
],
"license": "ISC",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"dependencies": {
"canvas": "^2.6.0"
},
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-motley": "^11.1.1",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "0.0.0",
"glob": "^7.0.5",
"husky": "^1.3.1",
"image-size": "^0.8.3",
"jest": "^24.9.0",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1",
"readimage": "^1.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,graphql,md,css,scss,less,ts}": [
"prettier --write",
"git add"
]
}
}