forked from bostrom/text-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "text-to-image",
"version": "0.0.0-development",
"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": "https://github.com/bostrom/text-to-image",
"bugs": {
"url": "https://github.com/bostrom/text-to-image/issues"
},
"keywords": [
"text",
"image",
"image generator",
"text generator",
"canvas",
"twitter"
],
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "jest --coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"canvas": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^12.1.1",
"@tsconfig/node10": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^27.2.4",
"coveralls": "^3.0.7",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-motley": "^14.0.0",
"eslint-config-motley-typescript": "^14.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.2",
"glob": "^7.0.5",
"husky": "^6.0.0",
"image-size": "^0.9.1",
"jest": "^26.6.3",
"lint-staged": "^11.2.0",
"prettier": "^2.2.1",
"readimage": "^1.1.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint",
"prettier --write"
],
"*.{json,graphql,md,css,scss,less}": [
"prettier --write"
]
}
}