UNPKG

conllup

Version:

Javascript library for converting conll sentence to json format and vice-versa.

52 lines (51 loc) 1.41 kB
{ "name": "conllup", "version": "3.1.3", "description": "Javascript library for converting conll sentence to json format and vice-versa.", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "jest --config jestconfig.json", "watch": "jest --config jestconfig.json --watch --verbose=false", "format": "prettier --write \"src/*.ts\"", "lint": "tslint -p tsconfig.json", "buildWeb": "webpack", "buildNode": "tsc", "build": "npm run buildNode", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/kirianguiller/conllup-js.git" }, "keywords": [ "conllup", "conllu", "syntax", "nlp" ], "author": "Kirian Guiller", "license": "ISC", "files": [ "lib/**/*" ], "bugs": { "url": "https://github.com/kirianguiller/conllup-js/issues" }, "homepage": "https://github.com/kirianguiller/conllup-js#readme", "devDependencies": { "@types/jest": "^26.0.16", "jest": "^26.6.3", "prettier": "^2.2.1", "ts-jest": "^26.4.4", "ts-loader": "^8.0.11", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.1.2", "webpack": "^5.10.0", "webpack-cli": "^4.2.0" } }