blob: 95f89571e541cd5462e8036198a247f560805d30 [file] [log] [blame]
{
"name": "conllu-cmc",
"version": "1.1.0",
"description": "Reads CoNLL-U format from stdin and annotates emojis, emoticons, hashtags, URLs, email addresses, @addresses, and action words. Writes CoNLL-U format to stdout.",
"main": "src/index.js",
"bin": {
"conllu-cmc": "src/index.js",
"cmc-tagger": "src/index.js"
},
"scripts": {
"pkg-linux": "rm -f bin/linux/conllu2cmc && pkg src/index.js --public -t node22-linux-x64 -o bin/linux/cmc-tagger && chmod +x bin/linux/cmc-tagger",
"pkg-macos": "rm -f bin/macos/conllu2cmc && pkg src/index.js --public -t node22-macos-x64 -o bin/macos/cmc-tagger",
"pkg-win": "rm -f bin/win/conllu2cmc.exe && pkg src/index.js --public -t node22-win-x64 -o bin/win/cmc-tagger.exe",
"pkg-all": "npm run pkg-linux && npm run pkg-macos && npm run pkg-win",
"pkg": "pkg",
"test": "jest",
"update-emoji-db": "node scripts/update_emoji_db.js",
"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",
"emoji-regex": "^10.3.0"
},
"pkg": {
"assets": [
"package.json"
],
"scripts": [
"src/*.js"
]
},
"jest": {
"modulePathIgnorePatterns": [
"/.gitlab-ci-local/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.gitlab-ci-local/"
]
},
"devDependencies": {
"@yao-pkg/pkg": "^6.14.1",
"child_process": "^1.0.2",
"jest": "^30.3.0"
}
}