UNPKG

cjk-readings

Version:

Web service that generates readings for chinese characters.

44 lines (43 loc) 1.29 kB
{ "name": "cjk-readings", "author": "James K Nelson <james@jamesknelson.com>", "license": "MIT", "version": "0.2.0", "description": "Web service that generates readings for chinese characters.", "keywords": ["pinyin", "cjk", "readings"], "main": "lib/index.js", "bin": { "cjk-readings-service": "./bin/cjk-readings-service.js" }, "scripts": { "build": "tsc --pretty --outDir lib", "clean": "rimraf dist", "lint": "eslint --ext js,ts,tsx src", "prepare": "yarn run clean && yarn run build", "start": "npm-run-all --parallel start:*", "start:build": "yarn build --watch", "start:watch": "nodemon bin/cjk-readings-service" }, "dependencies": { "@types/pinyin": "^2.8.1", "chalk": "^3.0.0", "express": "^4.17.1", "nocache": "^2.1.0", "nodejieba": "^2.3.3", "pinyin": "^2.9.0" }, "devDependencies": { "@types/express": "^4.17.2", "@typescript-eslint/eslint-plugin": "2.9.0", "@typescript-eslint/parser": "2.9.0", "env-cmd": "^10.0.1", "eslint": "^6.4.0", "eslint-import-resolver-typescript": "^1.1.1", "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "^2.18.0", "nodemon": "^2.0.1", "npm-run-all": "4.1.5", "rimraf": "^3.0.0", "typescript": "^3.7.2" } }