-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 980 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 980 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
37
38
39
40
41
42
43
44
45
{
"name": "axz",
"version": "0.4.4b",
"description": "Discord App bot",
"main": "./main.js",
"keywords": [
"bot",
"parser",
"discord"
],
"engines": {
"node": "^7.9.0"
},
"author": "Max \"Kruptixx\" <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"discord.js": "^11.0.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"scripts": {
"start": "node main",
"dev": "NODE_ENV='development' nodemon main",
"test": "jest",
"coverage": "jest --coverage",
"lint": "semistandard --env jest",
"lint-fix": "semistandard --fix --env jest"
},
"devDependencies": {
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"semistandard": "^11.0.0"
},
"repository": "https://github.com/Kruptixx/axz.git",
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"commands/*.js",
"lang/*.js",
"main/*.js",
"main.js"
]
}
}