forked from saurabhdaware/text-to-handwriting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "text-to-handwriting",
"version": "1.0.0-rc.1",
"description": "Hey everyone! text-to-handwriting is a tool that lets you generate image that looks like handwriting from text.",
"main": "js/app.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "cypress run",
"eslint": "eslint --fix \"js/**/**.mjs\"",
"prettier": "prettier --write \"./index.html\" \"js/**/**.mjs\" \"css/**.css\"",
"format": "npm run prettier",
"cy": "cypress open",
"dev": "serve ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/saurabhdaware/text-to-handwriting.git"
},
"keywords": [],
"author": "Saurabh Daware <[email protected]> (https://saurabhdaware.in/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/saurabhdaware/text-to-handwriting/issues"
},
"homepage": "https://github.com/saurabhdaware/text-to-handwriting#readme",
"devDependencies": {
"cypress": "^4.4.1",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"serve": "^11.3.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && eslint . --fix && npm run eslint"
}
}
}