1
0
mirror of https://github.com/garraflavatra/alphabets.git synced 2024-11-21 06:38:57 +01:00
alphabets/package.json
2023-08-08 21:53:27 +02:00

44 lines
962 B
JSON

{
"name": "alphabets",
"description": "A collection of many different alphabets for many different use cases. ",
"author": "Romein van Buren <romein@vburen.nl>",
"version": "2.0.5",
"homepage": "https://github.com/garraflavatra/alphabets#readme",
"license": "MIT",
"keywords": [
"alphabet",
"alphabets"
],
"repository": {
"type": "git",
"url": "https://github.com/garraflavatra/alphabets.git"
},
"main": "alphabets.cjs",
"module": "alphabets.mjs",
"files": [
"alphabets.cjs",
"alphabets.mjs",
"alphabets.json"
],
"devDependencies": {
"@garraflavatra/yeslint": "^1.0.0",
"eslint": "^8.46.0"
},
"eslintConfig": {
"extends": "./node_modules/@garraflavatra/yeslint/configs/node.js",
"rules": {
"strict": "off"
},
"overrides": [
{
"files": [
"*.mjs"
],
"parserOptions": {
"sourceType": "module"
}
}
]
}
}