-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.96 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
{
"name": "@cloudbeat/cli",
"version": "4.0.0",
"description": "CLI for CloudBeat API",
"main": "build/index",
"types": "build/index",
"scripts": {
"clean": "rimraf ./build ./out",
"compile": "tsc",
"build": "npm run clean && npm run lint && npm run compile",
"prod": "cross-env ./build/index.js",
"debug": "cross-env DEBUG=* ts-node-dev --transpile-only src/index.ts",
"test": "npm run test:eslint && npm run test:unit",
"test:eslint": "eslint src test",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"bin": {
"cloudbeat-cli": "./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oxygenhq/cloudbeat-cli.git"
},
"author": {
"name": "CBNR Cloud Solutions LTD",
"email": "info@cloudbeat.io",
"url": "https://cloudbeat.io"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/oxygenhq/cloudbeat-cli/issues"
},
"homepage": "https://github.com/oxygenhq/cloudbeat-cli#readme",
"dependencies": {
"@cloudbeat/client": "1.4.0",
"colors": "1.4.0",
"commander": "5.1.0",
"date-format": "0.0.2",
"junit-report-builder": "3.2.1",
"mkdirp": "3.0.1",
"moment": "2.30.1",
"xmlbuilder": "15.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"@cloudbeat/types": "1.0.8",
"@types/request": "2.48.13",
"cross-env": "7.0.3",
"eslint": "8.51.0",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "7.0.4",
"moxios": "0.4.0",
"rimraf": "3.0.2",
"ts-node": "10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "4.8.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}