This repository was archived by the owner on Apr 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
53
54
55
56
57
58
59
60
61
{
"name": "@klasa/console",
"version": "0.0.3",
"description": "The Console implementation for the @klasa/framework project",
"main": "dist/src/index.js",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"test": "ava",
"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"
},
"keywords": [],
"author": "dirigeants",
"license": "MIT",
"engines": {
"node": ">=10.1.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^16.4.10",
"@typescript-eslint/eslint-plugin": "4.0.0",
"@typescript-eslint/parser": "3.10.1",
"ava": "^3.15.0",
"eslint": "^7.18.0",
"eslint-config-klasa": "dirigeants/klasa-lint",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"typedoc": "^0.19.2",
"typescript": "^4.0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/dirigeants/console"
},
"ava": {
"files": [
"test/**/*.ts",
"!test/lib"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"test/": "dist/test/"
}
}
},
"dependencies": {
"@klasa/timestamp": "^0.0.1",
"@klasa/utils": "^0.1.0"
},
"files": [
"dist/src/"
]
}