forked from ruanyl/lookup-hans-pinyin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "lookup-hans-pinyin",
"version": "1.0.0",
"description": "loop up hans by pinyin",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc --declaration",
"prepublish": "npm run build",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/ruanyl/lookup-hans-pinyin.git"
},
"keywords": [
"汉字拼音检索"
],
"author": "Ruan Yulong <[email protected]> (http://github.com/ruanyl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruanyl/lookup-hans-pinyin/issues"
},
"homepage": "https://github.com/ruanyl/lookup-hans-pinyin",
"dependencies": {
"@types/pinyin": "^2.8.1",
"@types/ramda": "^0.25.51",
"array-fuzzy-match": "^1.0.0",
"pinyin": "^2.8.1",
"ramda": "^0.23.0"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"jest": "^24.0.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.1"
}
}