This repository has been archived by the owner on Apr 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.93 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
{
"name": "@klasa/core",
"version": "0.0.3",
"description": "wip-concept",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"test": "ava --timeout=2m",
"test:lint": "eslint --ext ts src test",
"test:coverage": "npx nyc check-coverage --lines 90 --functions 90 --branches 90",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dirigeants/core.git"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^3.10.1",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"eslint-config-klasa": "dirigeants/klasa-lint",
"nock": "^13.1.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"typedoc": "^0.19.2",
"typescript": "^4.3.5"
},
"author": "dirigeants",
"license": "MIT",
"bugs": {
"url": "https://github.com/dirigeants/core/issues"
},
"homepage": "https://github.com/dirigeants/core#readme",
"dependencies": {
"@klasa/bitfield": "^0.0.4",
"@klasa/cache": "^0.0.3",
"@klasa/dapi-types": "^0.3.0",
"@klasa/event-iterator": "^0.0.11",
"@klasa/rest": "^0.5.4",
"@klasa/snowflake": "^0.0.1",
"@klasa/timer-manager": "^0.0.1",
"@klasa/utils": "^0.1.0",
"@klasa/ws": "^0.0.14",
"@types/node": "^16.4.3",
"@types/node-fetch": "^2.5.8",
"fs-nextra": "^0.5.1"
},
"ava": {
"files": [
"test/**/*.ts",
"!test/lib"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"test/": "dist/test/"
}
}
},
"files": [
"dist/src"
]
}