-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.41 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
62
63
{
"name": "kickable",
"version": "2.0.0",
"description": "Kickable is a service meant to answer the question \"Can I Kick It?\"",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/defstream/kickable.git"
},
"bugs": {
"url": "https://github.com/defstream/kickable/issues"
},
"homepage": "https://github.com/defstream/kickable#readme",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "ava",
"test:coverage": "c8 --reporter=lcov --reporter=text ava",
"prepare": "husky"
},
"author": "Hector Gray <defstream@gmail.com>",
"license": "ISC",
"type": "module",
"dependencies": {
"koa": "^3.2.1",
"koa-helmet": "^9.0.0",
"koa-route": "^4.0.1",
"pino": "^10.3.1"
},
"devDependencies": {
"@types/koa": "^3.0.3",
"@types/koa-route": "^3.2.9",
"@types/node": "^25.9.2",
"ava": "^8.0.1",
"c8": "^11.0.0",
"eslint": "^10.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1"
},
"ava": {
"extensions": [
"ts"
],
"nodeArguments": [
"--import=tsx/esm"
],
"workerThreads": false,
"files": [
"test/**/*.ts"
]
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}