-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "comicgen",
"version": "1.9.9",
"description": "Add comics to your website or app with an API. Choose a character, angle, emotion and pose. Embed on your page.",
"main": "src/comicgen.js",
"jsdelivr": "src/comicgen.js",
"unpkg": "src/comicgen.js",
"repository": "https://github.com/gramener/comicgen",
"author": "S Anand <[email protected]>",
"bin": {
"comicserver": "./src/comicserver.js"
},
"scripts": {
"build": "rimraf dist && node src/buildchars.js",
"lint": "npx [email protected] --write \"**/*.{js,css,md}\" && eslint --ext js,html . && npm audit",
"prepublishOnly": "npm run lint",
"postinstall": "npm run build && node src/speechbubble.js",
"start": "node src/comicserver.js"
},
"license": "MIT",
"private": false,
"dependencies": {
"body-parser": "1",
"cheerio": "1.0.0-rc.10",
"color-interpolate": "1",
"d3-interpolate-path": "2",
"express": "4",
"fontkit": "2",
"glob": "8",
"lodash": "4",
"mustache": "4",
"rimraf": "3",
"roughjs": "^4.5.2",
"sharp": "^0.33.2",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-html": "^6.2.0",
"prettier": "^3.2"
},
"prettier": {
"printWidth": 120
}
}