forked from afuh/rick-and-morty-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.43 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
53
54
55
56
57
58
59
{
"name": "rick-morty-api",
"version": "1.0.0",
"description": "Rick and Morty API",
"main": "server.js",
"engines": {
"node": ">= 7.10.1"
},
"scripts": {
"start": "node ./server.js",
"dev": "nodemon ./server.js",
"data": "mongorestore --host=localhost:27017 --db=rickmorty-api --drop ./data",
"test": "nyc --check-coverage --lines 95 mocha --timeout 10000 --exit && nyc report --reporter=text-lcov | coveralls",
"test:watch": "mocha --watch"
},
"nyc": {
"exclude": [
"./helpers/*"
]
},
"author": "Axel Fuhrmann",
"license": "BSD-3-Clause",
"dependencies": {
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-brute": "^1.0.1",
"express-brute-mongoose": "^1.0.2",
"express-validator": "^5.2.0",
"moment": "^2.22.1",
"mongoose": "^5.1.2",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "^1.9.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"nyc": "^11.8.0"
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afuh/rick-and-morty-api.git"
},
"keywords": [
"api",
"rick and morty"
],
"bugs": {
"url": "https://github.com/afuh/rick-and-morty-api/issues"
},
"homepage": "https://github.com/afuh/rick-and-morty-api#readme"
}