forked from keenwon/eazydict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.86 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
75
76
77
78
79
80
81
{
"name": "eazydict",
"version": "2.1.0",
"description": "简单易用的命令行词典",
"main": "./index.js",
"bin": {
"eazydict": "./bin/cli"
},
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "elint lint \"src/**/*.js\" \"test/**/*.js\" index.js --fix",
"test:unit": "NODE_ENV=testing nyc --reporter=html --reporter=text mocha",
"test:coverage": "nyc report --reporter=lcovonly",
"beforecommit": "elint lint commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenwon/eazydict.git"
},
"author": {
"name": "keenwon",
"email": "[email protected]"
},
"keywords": [
"eazydict",
"dictionary",
"translate",
"youdao",
"bing",
"google",
"terminal",
"console",
"linux"
],
"license": "MIT",
"files": [
"bin",
"src",
"index.js",
".eazydict.yml"
],
"bugs": {
"url": "https://github.com/keenwon/eazydict/issues"
},
"homepage": "https://github.com/keenwon/eazydict#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^4.1.2",
"chalk-animation": "^2.0.3",
"cli-table3": "^0.6.3",
"cli-width": "^4.0.0",
"commander": "^9.4.1",
"debug": "^4.3.4",
"eazydict-bing": "^2.1.0",
"eazydict-google": "^2.1.0",
"eazydict-youdao": "^2.1.0",
"filesize": "^10.0.6",
"fs-extra": "^11.1.0",
"inquirer": "^9.1.4",
"js-yaml": "^4.1.0",
"moment": "^2.29.4",
"npmi": "^4.0.0",
"ora": "^5.4.1",
"sequelize": "^6.28.0",
"sqlite3": "^5.1.4",
"string-break": "^1.2.0",
"string-width": "^4.2.3",
"unicons": "^0.0.3",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"chai": "^4.3.7",
"elint": "^2.0.0-alpha.3",
"elint-preset-kw": "^1.9.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0"
}
}