gitmoji/packages/gitmojis/package.json
Carlos Cuesta 6233229fe1
♻️ Replace jsonlint with ajv-cli (#1253)
* ♻️ Update schema to `draft2020`
* ♻️ Replace `jsonlint` with `ajv-cli`
* 🚚 Rename `api` endpoint from `.tsx` to `.ts`
* 🔧 Use prettier on .ts files in gitmojis
2023-01-05 11:43:01 +01:00

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"
]
}