-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 835 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
{
"name": "adopt-a-pet",
"version": "1.0.10",
"description": "Wrapper for Adopt-a-Pet API",
"keywords": [
"adopt-a-pet",
"adopt",
"pet",
"api"
],
"homepage": "https://github.com/lynnaloo/adopt-a-pet#readme",
"bugs": {
"url": "https://github.com/lynnaloo/adopt-a-pet/issues"
},
"license": "MIT",
"author": "Linda Nichols <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lynnaloo/adopt-a-pet.git"
},
"scripts": {
"test": "mocha -c",
"lint": "eslint . --ext .js"
},
"dependencies": {
"debug": "^2.4.5",
"lodash": "^4.17.13",
"request": "^2.79.0"
},
"devDependencies": {
"eslint": "^6.2.0",
"eslint-config-eta": "0.0.9",
"mocha": "^6.0.0"
},
"engines": {
"node": ">=4.0.0"
}
}