-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 899 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 899 Bytes
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
{
"name": "bd-api",
"version": "0.0.1",
"description": "Bangladesh division,district,upazilla,post office,unions",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/DevWithEasy/bd-api.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel index.js -d dist",
"minify": "terser dist/index.js -o dist/index.min.js",
"prepare": "npm run build && npm run minify"
},
"author": "DevWithEasy",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"terser": "^5.25.0"
},
"files": [
"index.js",
"assets/divisions.json.gz",
"assets/districts.json.gz",
"assets/upazillas.json.gz",
"assets/postOffices.json.gz",
"assets/unions.json.gz"
],
"dependencies": {
"zlib": "^1.0.5"
}
}