-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.39 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
{
"name": "@botbind/nebula",
"version": "0.0.4-beta",
"description": "A lifecycle based Discord framework, completely modular and customisable!",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/botbind/nebula.git"
},
"author": "BotBind's Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/botbind/nebula/issues"
},
"homepage": "https://github.com/botbind/nebula#readme",
"scripts": {
"lint": "eslint . --report-unused-disable-directives && echo \"No errors found\"",
"lint:fix": "eslint . --fix && echo \"No errors found\"",
"test": "jest && tsc && echo \"No errors found\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"start": "nodemon tests"
},
"peerDependencies": {
"discord.js": "^12.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"cross-env": "^5.2.0",
"discord.js": "^12.0.1",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.9.0",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3",
"typescript": "^3.7.3"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@botbind/dust": "^3.0.0"
}
}