-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "google-currency-scraper",
"version": "3.2.0",
"description": "Scrape extremely up-to-date exchange rates from Google fast and for free, with only one external dependency.",
"license": "MIT",
"type": "module",
"exports": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/ozgurg/google-currency-scraper"
},
"scripts": {
"test": "vitest run",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --ext .js .",
"lint-staged": "lint-staged",
"prepare": "husky",
"generate-types": "tsc"
},
"author": {
"email": "ozgurgorgulu54@gmail.com",
"name": "Özgür Görgülü",
"url": "https://github.com/ozgurg"
},
"keywords": [
"scraper",
"currency",
"google scraper",
"currency api"
],
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"dependencies": {
"cheerio": "1.0.0-rc.12"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"eslint": "8.57.0",
"eslint-config-google": "0.14.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"typescript": "5.5.3",
"vitest": "2.0.1"
}
}