-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
90 lines (90 loc) · 2.29 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "handwritten.js",
"version": "18.11.3",
"description": "Convert typed text to realistic handwriting!",
"repository": {
"type": "git",
"url": "git+https://github.com/alias-rahil/handwritten.git"
},
"author": {
"email": "[email protected]",
"name": "Rahil Kabani",
"url": "https://alias-rahil.github.io/"
},
"contributors": [
{
"email": "[email protected]",
"name": "Anthony Ng",
"url": "https://anthonyng.me/"
},
{
"email": "[email protected]",
"name": "Ben Junya",
"url": "https://www.modernjsbyexample.net/"
},
{
"email": "[email protected]",
"name": "Harsh Singhal",
"url": "https://github.com/hsrambo07"
},
{
"name": "etienne",
"url": "https://github.com/etnnth"
},
{
"name": "Suyash Sonawane",
"email": "[email protected]",
"url": "https://suyashsonawane.me"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alias-rahil/handwritten/issues"
},
"homepage": "https://github.com/alias-rahil/handwritten#readme",
"dependencies": {
"@jimp/plugin-color": "^0.16.1",
"commander": "^6.0.0",
"del": "^6.0.0",
"jimp": "^0.16.1",
"joi": "^17.4.2",
"mocha": "^9.1.0",
"pdfkit": "^0.11.0",
"unidecode-plus": "^1.0.2"
},
"bin": {
"handwritten.js": "src/bin.js"
},
"scripts": {
"build": "npm i && eslint . --fix && browserify -e src/index.js -s handwritten -o docs/handwritten.js && minify docs/handwritten.js -o docs/handwritten.js",
"minor": "npm run build && npm version minor && npm run release",
"release": "git push && npm publish",
"test": "mocha",
"lint": "eslint .",
"prepare": "husky install"
},
"main": "src/index.js",
"keywords": [
"handwritten",
"text",
"handwriting",
"converter",
"handwriter",
"emnist-dataset",
"daniel-font",
"pen",
"pencil",
"extended-mnist"
],
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"babel-minify": "^0.5.1",
"browserify": "^16.5.2",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.1"
}
}