-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.01 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
{
"name": "wikiquote-cli",
"description": "Companion CLI for wikiquote package",
"version": "1.2.7",
"author": {
"name": "Forrest Desjardins",
"email": "[email protected]",
"url": "github.com/fdesjardins"
},
"bin": {
"wikiquote": "./index.js"
},
"dependencies": {
"wikiquote": "0.4.8",
"yargs": "^13.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"standard": "^13.1.0"
},
"engines": {
"node": ">=7"
},
"homepage": "https://github.com/fdesjardins/wikiquote-cli",
"keywords": [
"cli",
"command line",
"excerpts",
"fortune",
"proverbs",
"quotes",
"sayings",
"terminal",
"wikimedia",
"wikiquote"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"repository": "fdesjardins/wikiquote-cli",
"scripts": {
"test": "standard *.js && nyc mocha test/**/*-spec.js --timeout 20000"
}
}