mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
* ♻️ Update schema to `draft2020` * ♻️ Replace `jsonlint` with `ajv-cli` * 🚚 Rename `api` endpoint from `.tsx` to `.ts` * 🔧 Use prettier on .ts files in gitmojis
40 lines
904 B
JSON
40 lines
904 B
JSON
{
|
|
"name": "gitmojis",
|
|
"version": "3.13.2",
|
|
"description": "An emoji guide for your commit messages.",
|
|
"main": "src/gitmojis.json",
|
|
"files": [
|
|
"src/gitmojis.json"
|
|
],
|
|
"types": "src/gitmojis.d.ts",
|
|
"scripts": {
|
|
"lint": "ajv --spec=draft2020 validate -s ./src/schema.json -d ./src/gitmojis.json",
|
|
"publishPackage": "npm publish"
|
|
},
|
|
"devDependencies": {
|
|
"ajv-cli": "^5.0.0",
|
|
"lint-staged": "^13.0.0",
|
|
"prettier": "2.8.1"
|
|
},
|
|
"author": {
|
|
"name": "carloscuesta",
|
|
"email": "hi@carloscuesta.me",
|
|
"url": "https://carloscuesta.me"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/carloscuesta/gitmoji/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/carloscuesta/gitmoji.git"
|
|
},
|
|
"homepage": "https://gitmoji.dev",
|
|
"keywords": [
|
|
"gitmoji",
|
|
"emoji",
|
|
"carloscuesta",
|
|
"commit"
|
|
]
|
|
}
|