-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
{
"name": "tzlocator",
"version": "2.1.2",
"description": "Lightweight privacy respecting geolocation library with no dependencies.",
"author": "alexandre-fernandez",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexandre-fernandez/tzlocator"
},
"keywords": [
"tz",
"locator",
"timezone",
"geolocation",
"geo",
"location",
"country",
"currency",
"position"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint --ignore-path .eslintignore .",
"clean": "rimraf dist",
"generate-types": "tsc src/generators/types.ts --outDir dist --resolveJsonModule --esModuleInterop && node dist/src/generators/types.js",
"build": "npm run lint && npm run generate-types && npm run clean && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
}
}