forked from afuh/rick-and-morty-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 868 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 868 Bytes
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
{
"name": "rickmortyapi",
"version": "0.3.0",
"description": "A Rick and Morty API Node wrapper",
"main": "src/index.js",
"engines": {
"node": ">= 10.21.0"
},
"scripts": {
"dev": "nodemon src",
"test": "nyc ava --verbose && nyc report --reporter=lcov",
"test:watch": "ava --watch --verbose"
},
"author": "Axel Fuhrmann",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"ava": "^3.8.2",
"coveralls": "^3.1.0",
"eslint": "^5.16.0",
"nodemon": "^1.19.4",
"nyc": "^15.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afuh/rick-and-morty-api-node.git"
},
"keywords": [
"node",
"rick and morty"
],
"bugs": {
"url": "https://github.com/afuh/rick-and-morty-api-node/issues"
},
"homepage": "https://github.com/afuh/rick-and-morty-api-node#readme"
}