blob: 4ff2371312d05905eb8b2d30a5319b33307c72a7 [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 node18-linux-x64 -o bin/linux/conllu-gender && chmod +x bin/linux/conllu-gender",
"pkg-macos": "pkg src/index.js --public -t node18-macos-x64 -o bin/macos/conllu-gender",
"pkg-win": "pkg src/index.js --public -t node18-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"
]
},
"devDependencies": {
"child_process": "^1.0.2",
"jest": "^29.7.0",
"pkg": "^5.8.1"
}
}