-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 854 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
{
"name": "smolly-cli",
"version": "1.0.0",
"description": "CLI app for things and stuff",
"main": "./bin/index.js",
"bin": {
"smolly": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "Tomas Novikovas",
"license": "ISC",
"dependencies": {
"axios": "^0.26.1",
"chalk": "^5.0.1",
"commander": "^9.0.0",
"conf": "^10.1.1",
"dateformat": "^5.0.3",
"dotenv": "^16.0.0",
"finnhub": "^1.2.12",
"table": "^6.8.0"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.0"
}
}