-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "zomato-analytics-cli",
"version": "1.0.2",
"description": "CLI for analyzing orders made on Zomato.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"zomato-analytics-cli": "dist/index.js"
},
"scripts": {
"start": "node ./dist",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc -p .",
"test": "sudo npm i -g && zomato-analytics-cli",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"author": "Rishav Anand",
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^0.22.16",
"@types/inquirer": "^6.5.0",
"@types/md5": "^2.1.33",
"@types/node": "^13.7.4",
"@types/node-fetch": "^2.5.4",
"@types/table": "^4.0.7",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"clear": "^0.1.0",
"commander": "^4.1.1",
"figlet": "^1.3.0",
"inquirer": "^7.0.5",
"md5": "^2.2.1",
"node-fetch": "^2.6.0",
"path": "^0.12.7",
"table": "^5.4.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rishavanand/zomato-analytics-cli.git"
},
"keywords": [
"zomato",
"zomato-cli",
"zomato-analytics",
"analytics",
"cli"
],
"bugs": {
"url": "https://github.com/rishavanand/zomato-analytics-cli/issues"
},
"homepage": "https://github.com/rishavanand/zomato-analytics-cli#readme"
}