-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"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"
}
}