forked from bostrom/text-to-image
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
{
"name": "text-to-image",
"version": "1.2.0",
"description": "A library for generating an image data URI representing an image containing the text of your choice.",
"main": "index.js",
"scripts": {
"test": "gulp",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bostrom/text-to-image.git"
},
"keywords": [
"text",
"image",
"image generator",
"text generator",
"twitter"
],
"author": "Fredrik Boström",
"license": "ISC",
"bugs": {
"url": "https://github.com/bostrom/text-to-image/issues"
},
"homepage": "https://github.com/bostrom/text-to-image#readme",
"dependencies": {
"bluebird": "^3.4.1",
"canvas": "latest",
"lodash": "^4.15.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-things": "^0.2.0",
"coveralls": "^2.11.12",
"eslint": "^3.10.0",
"glob": "^7.0.5",
"gulp": "^3.9.1",
"gulp-spawn-mocha": "^3.0.0",
"gulp-util": "^3.0.7",
"image-size": "^0.5.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"readimage": "^1.1.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
}
}