generated from unlimitedcoder2/typescript-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 899 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 899 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
{
"name": "ndbf",
"version": "1.0.9",
"description": "Some shitty discord bot framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"prestart": "tsc --build",
"lint": "eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlimitedcoder2/ndbf.git"
},
"author": "unlimitedcoder2",
"license": "MIT",
"bugs": {
"url": "https://github.com/unlimitedcoder2/ndbf/issues"
},
"homepage": "https://github.com/unlimitedcoder2/ndbf#readme",
"devDependencies": {
"@types/node": "^14.0.14",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"typescript": "^3.9.5"
},
"dependencies": {
"eris": "^0.14.0",
"reflect-metadata": "^0.1.13"
}
}