-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1009 Bytes
/
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
{
"name": "@niranjann/cryptox",
"version": "1.0.0",
"description": "This is a command line interface for viewing crypto prices.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"cryptox": "bin/cryptox.js"
},
"author": "Niranjan A S",
"license": "ISC",
"dependencies": {
"axios": "^1.6.5",
"colors": "^1.4.0",
"commander": "^11.1.0",
"configstore": "^6.0.0",
"inquirer": "^9.2.12"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Niranjan-A-S/cryptox.git"
},
"bugs": {
"url": "https://github.com/Niranjan-A-S/cryptox/issues"
},
"homepage": "https://github.com/Niranjan-A-S/cryptox#readme"
}