-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 970 Bytes
/
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
{
"name": "wikiquote",
"description": "Promise-based interface for Wikiquote (https://en.wikiquote.org/wiki/Main_Page)",
"version": "0.5.0",
"author": {
"name": "Forrest Desjardins",
"email": "desjardinsfg@gmail.com",
"url": "github.com/fdesjardins"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"superagent": "^5.1.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",
"keywords": [
"excerpts",
"fortunes",
"proverbs",
"quotes",
"sayings",
"wikimedia",
"wikiquote"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"repository": "fdesjardins/wikiquote",
"scripts": {
"test": "standard *.js && nyc mocha --opts mocha.opts test.js"
}
}