forked from aorinevo/omdb-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
60
61
62
63
{
"name": "omdb-bot",
"version": "0.2.0",
"description": "Finds infos from IMDB via OMDB API.",
"main": "./src/server.js",
"scripts": {
"commit": "npx git-cz",
"docs": "npx projectz compile",
"lint": "npx standard",
"lint:fix": "npx standard --fix",
"start": "node ./src/server.js",
"start:dev": "nodemon",
"test": "lab -t 100",
"test:cov": "lab -r html -o coverage.html"
},
"nodemonConfig": {
"ignore": [
"test/*"
],
"delay": "1500"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kreig303/omdb-bot.git"
},
"keywords": [
"imdb",
"omdb"
],
"author": "2019 Kreig Zimmerman (https://github.com/kreig303)",
"contributors": [
"Kreig Zimmerman (https://github.com/kreig303)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kreig303/omdb-bot/issues"
},
"homepage": "https://github.com/kreig303/omdb-bot#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@hapi/lab": "^18.1.1",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^7.0.0",
"nodemon": "^1.19.4",
"projectz": "^1.7.4",
"standard": "^12.0.1"
},
"maintainers": [
"Kreig Zimmerman (https://github.com/kreig303)"
],
"dependencies": {
"@hapi/boom": "^7.4.2",
"@hapi/joi": "^15.0.0",
"@hapi/wreck": "^15.0.0",
"hapi": "^18.1.0"
},
"type": "module"
}