-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.53 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.53 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
{
"name": "@botbind/nebula",
"version": "0.0.4-beta",
"description": "A lifecycle based Discord framework, completely modular and customisable!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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": {
"build": "rimraf dist && tsc -p tsconfig.prod.json",
"test": "cross-env NODE_ENV=development nodemon -e ts --exec ts-node src/__tests__",
"lint": "eslint \"src/**/*.ts\" --report-unused-disable-directives && echo \"No errors found\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix && echo \"No errors found\"",
"types:check": "tsc --noEmit && echo \"No errors found\""
},
"peerDependencies": {
"discord.js": "^11.5.1"
},
"devDependencies": {
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"cross-env": "^5.2.0",
"discord.js": "^11.5.1",
"dotenv": "^8.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/lodash.merge": "^4.6.6",
"colors": "^1.4.0",
"dayjs": "^1.8.16",
"lodash.merge": "^4.6.2"
}
}