-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "@mr-mkz/atlas",
"version": "1.2.0",
"description": "Atlas is a library that gives you region, subregion, country, state and city names with some special information if you want.",
"type": "module",
"source": "src/index.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.esm.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "node ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mr-MKZ/AtlasJs.git"
},
"keywords": [
"atlas",
"map",
"country",
"city",
"state",
"region",
"subregion",
"name",
"geo",
"location"
],
"author": "Mr.MKZ",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mr-MKZ/AtlasJs/issues"
},
"homepage": "https://github.com/Mr-MKZ/AtlasJs#readme",
"devDependencies": {
"microbundle": "^0.15.1"
}
}