This repository was archived by the owner on Oct 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.62 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
{
"name": "@slimio/discord-bot",
"version": "0.1.0",
"description": "Slimio discord bot",
"main": "index.js",
"scripts": {
"start": "node index.js",
"prepublishOnly": "pkg-ok",
"test": "cross-env psp && ava --verbose",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "nyc ava",
"report": "nyc report --reporter=html"
},
"keywords": [
"SlimIO",
"monitoring"
],
"files": [
"index.js",
"template"
],
"author": "SlimIO",
"license": "MIT",
"dependencies": {
"@polka/send": "^0.4.0",
"body-parser": "^1.19.0",
"discord.js": "^11.5.1",
"dotenv": "^8.0.0",
"make-promises-safe": "^5.0.0",
"polka": "^0.5.2"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^3.0.2",
"@slimio/psp": "^0.6.0",
"ava": "^2.0.0",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"husky": "^3.0.0",
"jsdoc": "^3.6.3",
"nyc": "^14.1.1",
"pkg-ok": "^2.3.1"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-push": "cross-env eslint index.js && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 90
}
}