forked from threeal/google-rank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
57
58
59
{
"name": "google-rank",
"version": "0.3.0",
"description": "Retrieve the Google search ranking of your website for specific keywords ",
"keywords": [
"cli",
"google",
"tools",
"seo",
"seotools",
"google-search",
"search-ranking"
],
"homepage": "https://github.com/threeal/google-rank#readme",
"bugs": {
"url": "https://github.com/threeal/google-rank/issues",
"email": "[email protected]"
},
"repository": "github:threeal/google-rank.git",
"license": "MIT",
"author": "Alfi Maulana <[email protected]> (https://github.com/threeal)",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"bin": "dist/bin.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint src",
"prepack": "nx build",
"sort": "sort-package-json",
"test": "jest"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"google-sr": "^3.2.1",
"ora": "^8.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nx": "^17.2.8",
"prettier": "^3.2.4",
"sort-package-json": "^2.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"nx": {}
}