-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.12 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
{
"name": "osham",
"version": "1.0.2",
"description": "A Configuration based Proxy server to cache API response.",
"main": "lib/index.js",
"typings": "./lib/index.d.ts",
"author": "ajaysinghj8 <ajaysinghj8@hotmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "node lib/index.js",
"build": "rm -rf lib && tsc",
"lint": "eslint 'src/**/*.ts'",
"test": "mocha",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"bugs": {
"url": "https://github.com/ajaysinghj8/osham/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ajaysinghj8/osham.git"
},
"keywords": [
"Cache",
"Proxy",
"Configurable",
"Redis",
"Fast"
],
"bin": {
"osham": "./bin/osham"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/follow-redirects": "^1.13.0",
"@types/js-yaml": "^4.0.0",
"@types/koa-compose": "^3.2.5",
"@types/node": "^14.14.21",
"@types/parseurl": "^1.3.1",
"@types/path-to-regexp": "^1.7.0",
"@types/redis": "^2.8.28",
"@types/statuses": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"artillery": "^1.6.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"flamebearer": "^1.1.3",
"mocha": "^8.2.1",
"mocha-typescript": "^1.1.17",
"prettier": "^2.2.1",
"standard-version": "^9.1.0",
"supertest": "^6.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"follow-redirects": "^1.13.1",
"js-yaml": "^4.0.0",
"koa-compose": "^4.1.0",
"parse-duration": "^0.4.4",
"parseurl": "^1.3.3",
"path-to-regexp": "0.1.7",
"querystring": "^0.2.0",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"statuses": "^2.0.1"
},
"engines": {
"node": ">=14.0.0"
}
}