sudachi-synonyms-parser
Version:
Sudachi's synonyms dictionary parser
75 lines (74 loc) • 1.69 kB
JSON
{
"name": "sudachi-synonyms-parser",
"version": "1.0.3",
"description": "Sudachi's synonyms dictionary parser",
"keywords": [
"csv",
"dictionary",
"parser",
"synonyms"
],
"homepage": "https://github.com/azu/sudachi-synonyms-parser",
"bugs": {
"url": "https://github.com/azu/sudachi-synonyms-parser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/sudachi-synonyms-parser.git"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/sudachi-synonyms-parser.js",
"types": "lib/sudachi-synonyms-parser.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsc -p .",
"clean": "rimraf lib/",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.7",
"@types/papaparse": "^5.0.1",
"cross-env": "^6.0.3",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-node": "^8.5.0",
"ts-node-test-register": "^8.0.1",
"typescript": "^3.7.2"
},
"dependencies": {
"csv.js": "^1.0.7",
"papaparse": "^5.1.0"
}
}