-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.25 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": "wiclipedia",
"version": "0.6.0",
"description": "wikipedia articles summaries in your terminal",
"repository": "kikiklang/wiclipedia",
"homepage": "https://github.com/kikiklang/wiclipedia",
"license": "MIT",
"author": {
"name": "Vincent Bourdeau",
"email": "kikiklang@protonmail.com",
"url": "https://kikiklang.github.io"
},
"main": "cli.js",
"bin": {
"wicli": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"test": "jest",
"lint": "xo",
"lint-fix": "xo --fix"
},
"files": [
"src",
"cli.js",
"index.js"
],
"engines": {
"node": ">=10"
},
"preferGlobal": true,
"keywords": [
"cli",
"terminal",
"wikipedia",
"app",
"search"
],
"dependencies": {
"boxen": "^4.2.0",
"configstore": "^5.0.1",
"iso-639-1": "^2.1.3",
"kleur": "^4.0.0",
"meow": "^7.0.1",
"node-fetch": "^2.6.0",
"ora": "^4.0.4",
"qoa": "^0.2.0",
"update-notifier": "^4.1.0",
"wtf_wikipedia": "^8.3.0"
},
"devDependencies": {
"jest": "^29.7.0",
"xo": "^0.30.0"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"unicorn/no-process-exit": "off",
"unicorn/import-index": "off",
"import/extensions": "off"
}
}
}