-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 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
{
"name": "tz-geo-currency",
"version": "1.0.5",
"author": "Allen He <[email protected]>",
"description": "A JavaScript library offering an alternative to IP-based geolocation, using timezone information to infer a user's country and currency.",
"main": "dist/tl.cjs.js",
"module": "dist/tl.esm.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint ./src/**/*.js --quiet",
"fetch-tz-data": "node ./script/updateTimezonesData.js",
"fetch-countries-data": "node ./script/updateCountriesData.js",
"build": "rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cccccroge/tz-geo-currency.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cccccroge/tz-geo-currency/issues"
},
"homepage": "https://github.com/cccccroge/tz-geo-currency#readme",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^1.7.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"node-fetch": "^2.7.0",
"rollup": "^4.14.0",
"tar-fs": "^3.0.5"
}
}