-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
40 lines (40 loc) · 853 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
{
"name": "fattest-cat",
"version": "2.0.0",
"description": "Find fattest cat currently up for adoption at SF SPCA.",
"bin": "src/print_fattest_cat.js",
"main": "server.js",
"engines": {
"node": ">=8.0.0"
},
"repository": "lexiross/fattest-cat",
"scripts": {
"precommit": "eslint src",
"print": "node src/print_fattest_cat.js"
},
"author": "Lexi Ross",
"keywords": [
"cat",
"cats",
"spca",
"fat",
"fatter",
"fattest",
"meow"
],
"license": "ISC",
"dependencies": {
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"opener": "^1.4.3",
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^0.13.2",
"prettier": "1.18.2"
}
}