This repository has been archived by the owner on Aug 28, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
84 lines (84 loc) · 2.22 KB
/
package.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "klasa",
"version": "0.6.0-dev",
"description": "Klasa: Croatian for 'class', is a class based remix on Komada.",
"homepage": "https://klasa.js.org/",
"bugs": {
"url": "https://github.com/dirigeants/klasa/issues"
},
"license": "MIT",
"author": "BDistin",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dirigeants/klasa.git"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"test": "ava --timeout=2m",
"test:lint": "eslint --ext ts src test",
"test:coverage": "npx nyc check-coverage --lines 0 --functions 0 --branches 0",
"coverage": "npx nyc --require source-map-support/register npm test",
"coverage:report": "npx nyc report --reporter=html",
"lint": "eslint --fix --ext ts src test",
"docs": "typedoc",
"docs:html": "typedoc --inputFiles src --mode file --out docs"
},
"dependencies": {
"@klasa/cache": "^0.0.3",
"@klasa/console": "^0.0.3",
"@klasa/cron": "^0.0.1",
"@klasa/duration": "^0.0.3",
"@klasa/ratelimits": "^0.1.0",
"@klasa/request-handler": "^0.0.3",
"@klasa/stopwatch": "^0.0.1",
"@klasa/timer-manager": "0.0.1",
"@klasa/timestamp": "^0.0.1",
"@klasa/type": "^0.0.1",
"@klasa/utils": "^0.1.0",
"discord-md-tags": "1.0.0",
"fs-nextra": "^0.5.1"
},
"peerDependencies": {
"@klasa/core": "^0.0.3",
"@klasa/dapi-types": "^0.2.2"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@klasa/core": "dirigeants/core#build",
"@klasa/dapi-types": "^0.2.2",
"@types/node": "14",
"@types/node-fetch": "^2.5.7",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"ava": "^3.12.1",
"eslint": "^7.7.0",
"eslint-config-klasa": "dirigeants/klasa-lint",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"typedoc": "^0.18.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=12.6.0"
},
"ava": {
"files": [
"test/**/*.ts",
"!test/lib"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"test/": "dist/test/"
}
}
},
"files": [
"dist/src"
]
}