-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.95 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
{
"name": "@domoinc/ryuu-proxy",
"version": "4.3.5-beta.2",
"description": "a middleware that provides a proxy for local domo app development",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "tslint src/**/*.ts --project ./tsconfig.json",
"test": "mocha && rm -rf test",
"tdd": "mocha --watch",
"build": "rm -rf ./dist && tsc",
"releaseAlpha": "npm run build && npm publish --tag alpha",
"releaseBeta": "npm run build && npm publish --tag beta",
"release": "npm run build && npm publish",
"start": "npm run build -- -w",
"clean": "rm -rf node_modules && yarn",
"bumpAlpha": "npm run build && npm run bump -- --prerelease alpha",
"bumpBeta": "npm run build && npm 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.0",
"@types/chai": "^4.3.1",
"@types/configstore": "^5.0.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"@types/sinon": "^10.0.12",
"@types/tough-cookie": "^4.0.2",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"mock-req": "^0.2.0",
"sinon": "^14.0.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"tslint-config-airbnb": "^5.11.2",
"tsutils": "^3.21.0",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"axios-cookiejar-support": "^1.0.1",
"busboy": "^1.6.0",
"configstore": "^5.0.1",
"dotenv": "^16.0.1",
"form-data": "^4.0.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"https-proxy-agent": "^5.0.1",
"ryuu-client": "^4.3.4-beta.4",
"tough-cookie": "^4.0.0"
},
"peerDependencies": {
"ryuu": "^4.2.5"
}
}