blob: 2663a3585bf0be1f0c7209b253d4f2abae81451c [file] [log] [blame]
{
"name": "conllu-gender",
"version": "0.1.0",
"description": "Reads CoNLL-U format from stdin and annotates gender-sensitive forms (Genderstern, Doppelpunkt, Unterstrich, Binnen-I, Klammern, Schrägstrich) and neo-pronouns with correct POS, lemma, and morphological features. Writes CoNLL-U format to stdout.",
"main": "src/index.js",
"bin": {
"conllu-gender": "src/index.js"
},
"scripts": {
"pkg-linux": "pkg src/index.js --public -t node22-linux-x64 -o bin/linux/conllu-gender && chmod +x bin/linux/conllu-gender",
"pkg-macos": "pkg src/index.js --public -t node22-macos-x64 -o bin/macos/conllu-gender",
"pkg-win": "pkg src/index.js --public -t node22-win-x64 -o bin/win/conllu-gender",
"pkg-all": "npm run pkg-linux && npm run pkg-macos && npm run pkg-win",
"pkg": "pkg",
"test": "jest",
"start": "node src/index.js"
},
"author": "Marc Kupietz",
"license": "BSD-2-Clause",
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1"
},
"pkg": {
"assets": [
"package.json"
],
"scripts": [
"src/*.js"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/.gitlab-ci-local/"
]
},
"devDependencies": {
"@yao-pkg/pkg": "^6.14.1",
"child_process": "^1.0.2",
"jest": "^29.7.0"
}
}