-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.9 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
{
"name": "koii",
"version": "3.2.0",
"description": "Simple middleware to display routes in an express application",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": "[email protected]:BolajiOlajide/koii.git",
"homepage": "https://github.com/BolajiOlajide/koii",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/preset-env": "7.22.5",
"@babel/preset-typescript": "7.16.5",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@types/express": "4.17.13",
"@types/jest": "27.0.3",
"@types/node": "17.0.0",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"eslint": "8.4.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "27.2.1",
"jest": "29.5.0",
"nodemon": "2.0.22",
"rollup": "4.1.4",
"rollup-plugin-dts": "6.1.0",
"ts-jest": "29.1.0",
"ts-node": "10.4.0",
"ts-node-dev": "1.1.8",
"typescript": "4.5.4"
},
"author": {
"email": "[email protected]",
"name": "Bolaji Olajide",
"url": "https://bolaji.de"
},
"dependencies": {
"chalk": "4.1.2",
"easy-table": "1.2.0"
},
"peerDependencies": {
"express": ">3.0.0"
},
"scripts": {
"cleanup": "rm -rf dist",
"build": "pnpm cleanup && pnpm run build:ts && pnpm run build:rollup",
"build:ts": "tsc",
"build:rollup": "rollup -c",
"lint": "eslint . --ext .ts",
"start:example": "ts-node-dev src/examples",
"start:example2": "ts-node-dev src/examples/example2",
"test": "jest"
},
"keywords": [
"koi",
"koii",
"express",
"routes",
"startup",
"blipp"
]
}