-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.56 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "comic-strip-api",
"version": "1.0.3",
"description": "An API for retrieving daily comic strips",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"start-dev": "nodemon src/index.js",
"test": "npm run test-unit && npm run test-coverage",
"test-unit": "mocha",
"test-coverage": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Commodore68/comic-strip-api.git"
},
"keywords": [
"daily",
"comic",
"strip",
"strips",
"API",
"api",
"comic strip",
"comic strips",
"comic strip api",
"comic strips api"
],
"author": "Commodore68",
"license": "MIT",
"bugs": {
"url": "https://github.com/Commodore68/comic-strip-api/issues"
},
"homepage": "https://github.com/Commodore68/comic-strip-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-fetch": "^2.6.5",
"node-html-parser": "^4.1.5"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.2",
"nodemon": "^2.0.13",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"supertest": "^6.1.6"
},
"mocha": {
"exit": true,
"timeout": 100000,
"recursive": true,
"require": [
"./setupTests.js"
],
"spec": [
"./src"
]
},
"nyc": {
"include": [
"src"
],
"exclude": [
"**/data.js",
"**/*.test.js"
],
"reporter": [
"lcov",
"text"
],
"all": true,
"instrument": true,
"sourcemap": true
}
}