-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
45 lines (45 loc) · 980 Bytes
/
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
{
"name": "text2png",
"version": "2.3.0",
"description": "Convert text to png for node.js",
"main": "index.js",
"bin": {
"text2png": "./bin/text2png.js"
},
"scripts": {
"lint": "eslint **/*.js *.js",
"fix": "eslint **/*.js *.js --fix",
"test": "npm run lint && jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkrkt/text2png.git"
},
"keywords": [
"text",
"png"
],
"author": "tkrkts <[email protected]> (http://github.com/tkrkt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tkrkt/text2png/issues"
},
"homepage": "https://github.com/tkrkt/text2png#readme",
"files": [
"bin",
"README.md",
"index.js",
"package.json",
"LICENSE"
],
"dependencies": {
"canvas": "^2.6.0",
"commander": "^3.0.1"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"jasmine": "^3.4.0",
"looks-same": "^7.2.1"
}
}