-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.89 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
81
82
83
{
"name": "tubee-client-cli",
"description": "tubee console client",
"main": "main.js",
"scripts": {
"prebuild": "cd node_modules/commandpost && npm install && npm audit fix --force && npm update && npm run build && cd ../../ && tsc",
"start": "tsc && node build/main.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint --fix -p tsconfig.json",
"build": "npm run format && npm audit --audit-level=high && npm run prebuild",
"test": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info",
"dist-linux": "nexe --verbose -r node_modules/@gyselroth/tubee-sdk-node/openapi.yml -r node_modules/keytar/build/Release/keytar.node -i build/main.js -o dist/tubectl-linux-x64 -t linux-x64-8.12.0",
"dist-windows": "nexe --verbose -r node_modules/@gyselroth/tubee-sdk-node/openapi.yml -r node_modules/keytar/build/Release/keytar.node -i build/main.js -o dist/tubectl-win-x64 -t windows-x64-8.12.0",
"dist-osx": "nexe --verbose -r node_modules/@gyselroth/tubee-sdk-node/openapi.yml -r node_modules/keytar/build/Release/keytar.node -i build/main.js -o dist/tubectl-osx-x64 -t mac-x64-8.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gyselroth/tubee-client-cli.git"
},
"keywords": [
"tubee",
"cli",
"client"
],
"author": "Raffael Sahli <sahli@gyselroth.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gyselroth/tubee-client-cli/issues"
},
"homepage": "https://github.com/gyselroth/tubee-client-cli#readme",
"dependencies": {
"@gyselroth/tubee-sdk-node": "1.2.3",
"@types/request": "^2.48.6",
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"commandpost": "https://github.com/raffis/commandpost/tarball/dev",
"event-stream": "^4.0.1",
"fast-json-patch": "^2.2.1",
"get-uri": "^3.0.2",
"js-yaml": "^4.1.0",
"json-stream": "^1.0.0",
"JSONStream": "^1.3.5",
"keytar": "https://github.com/gyselroth/node-keytar/tarball/master",
"lodash.merge": "^4.6.2",
"moment": "^2.29.1",
"object-path": "^0.11.5",
"password-prompt": "^1.1.2",
"patch-module": "^0.1.0",
"pretty-ms": "^7.0.1",
"randomstring": "^1.2.1",
"rewire": "^6.0.0",
"swagger-parser": "^10.0.2",
"table": "^5.4.6",
"validate.io-uri": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.4.5",
"coveralls": "^3.1.1",
"jest": "^27.0.5",
"nexe": "^4.0.0-beta.18",
"prettier": "^2.3.2",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}