-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "region_identifier",
"version": "2.0.2",
"description": "Gets the name of the region depending of the country and zip code.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/parcelLab/regionIdentifier.git"
},
"keywords": [
"regions",
"country"
],
"author": "Oscar R. Reyes, Julian Krenge.",
"license": "CC BY 3.0",
"bugs": {
"url": "https://github.com/parcelLab/regionIdentifier/issues"
},
"homepage": "https://github.com/parcelLab/regionIdentifier",
"scripts": {
"test": "mocha test",
"lint": "eslint ."
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.13.5",
"countryjs": "github:parcellab/countryjs"
},
"devDependencies": {
"@parcellab/eslint-config": "^0.5.5",
"chai": "^4.5.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-promise": "^7.2.1",
"mocha": "^11.7.5"
},
"overrides": {
"eslint-plugin-unicorn": "47.0.0",
"diff": "^8.0.3",
"js-yaml": "^4.1.1"
}
}