-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.07 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@domoinc/ryuu-proxy",
"version": "5.0.2",
"description": "a middleware that provides a proxy for local domo app development",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test": "TS_NODE_PROJECT=tsconfig.test.json mocha && rm -rf test",
"test:coverage": "nyc --reporter=text --reporter=html --reporter=json-summary --require ts-node/register --extension .ts mocha 'src/**/*.spec.ts' && rm -rf test",
"test:coverage:open": "nyc --reporter=text --reporter=html --reporter=json-summary --require ts-node/register --extension .ts mocha 'src/**/*.spec.ts' && rm -rf test && open coverage/index.html",
"tdd": "mocha --watch",
"build": "rm -rf ./dist && tsc",
"prepublishOnly": "pnpm run lint && pnpm test && pnpm run build",
"release:alpha": "pnpm run build && pnpm publish --tag alpha",
"release:beta": "pnpm run build && pnpm publish --tag beta",
"release:production": "pnpm run build && pnpm publish",
"start": "pnpm run build -- -w",
"clean": "rm -rf node_modules pnpm-lock.yaml && pnpm install",
"bump:alpha": "pnpm run build && pnpm run bump -- --prerelease alpha",
"bump:beta": "pnpm run build && pnpm run bump -- --prerelease beta",
"bump": "standard-version"
},
"author": "AppTeam6 <Squad.AppTeam6@domo.com>",
"repository": {
"type": "git",
"url": "https://github.com/DomoApps/ryuu-proxy.git"
},
"files": [
"dist"
],
"license": "MIT",
"keywords": [
"domo",
"domo apps"
],
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/chai": "^4.3.20",
"@types/configstore": "^6.0.2",
"@types/express": "^4.17.24",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.130",
"@types/sinon": "^17.0.4",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"chai": "^4.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.5.4",
"mocha": "^10.8.2",
"mock-req": "^0.2.0",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"ryuu": "^5.0.2",
"sinon": "^17.0.2",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.5",
"axios-cookiejar-support": "^6.0.4",
"busboy": "^1.6.0",
"configstore": "^7.1.0",
"dotenv": "^16.6.1",
"form-data": "^4.0.4",
"fs-extra": "^11.3.2",
"glob": "^10.5.0",
"https-proxy-agent": "^7.0.6",
"ryuu-client": "^4.4.5",
"tough-cookie": "^5.0.0"
},
"peerDependencies": {
"express": "^4.17.0 || ^5.0.0",
"ryuu": "^5.0.2"
},
"overrides": {
"axios": "^1.13.5"
},
"pnpm": {
"overrides": {
"axios": "^1.13.5"
}
}
}