-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 977 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 977 Bytes
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
{
"name": "backstage-api",
"version": "1.1.0",
"description": "A CLI tool to interact with Backstage API",
"main": "index.js",
"bin": {
"backstage-api": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeVerse-GP/backstage-api.git"
},
"homepage": "https://github.com/CodeVerse-GP/backstage-api.git#readme",
"bugs": {
"url": "https://github.com/CodeVerse-GP/backstage-api.git/issues"
},
"scripts": {
"start": "node index.js",
"format": "prettier --write \"**/*.{js,json,md}\""
},
"keywords": [
"backstage",
"api",
"cli",
"backstage-api"
],
"author": "Codeverse-GP",
"license": "MIT",
"dependencies": {
"axios": "^1.8.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"prettier": "^3.5.3"
}
}