forked from keenwon/eazydict-youdao
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "eazydict-youdao",
"version": "2.1.0",
"description": "EazyDict 有道词典插件",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "elint lint \"lib/**/*.js\" \"test/**/*.js\" defaultConfig.js index.js --fix",
"test:unit": "NODE_ENV=testing nyc --reporter=html --reporter=text mocha",
"test:coverage": "nyc report --reporter=lcovonly",
"start": "NODE_ENV=online nyc --reporter=html --reporter=text mocha --timeout 5000 \"test/**/*.js\" && nyc report --reporter=text-lcov | coveralls",
"beforecommit": "elint lint commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenwon/eazydict-youdao.git"
},
"author": {
"name": "keenwon",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/keenwon/eazydict-youdao/issues"
},
"files": [
"lib",
"defaultConfig.js",
"index.js"
],
"keywords": [
"eazydict",
"dictionary",
"translate",
"youdao",
"bing",
"google",
"terminal",
"console",
"linux"
],
"homepage": "https://github.com/keenwon/eazydict-youdao#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"elint": "^2.0.0-alpha.3",
"elint-preset-kw": "^1.8.1",
"joi": "^14.3.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3"
},
"dependencies": {
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"eazydict-standard-output": "^1.7.2",
"https-proxy-agent": "^3.0.1",
"lodash.assign": "^4.2.0",
"node-fetch": "^2.6.0",
"p-retry": "^4.2.0",
"socks-proxy-agent": "^4.0.2"
}
}