-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 840 Bytes
/
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
{
"name": "country-code-info",
"version": "0.3.0",
"description": "A library to get country information in various standards.",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"lint": "eslint .",
"precommit": "npm run lint",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ersel/country-code-info.git"
},
"keywords": [
"country",
"codes",
"iso",
"gec",
"fips",
"fifa",
"dial"
],
"author": "Ersel Aker",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/ersel/country-code-info/issues"
},
"homepage": "https://github.com/ersel/country-code-info#readme",
"devDependencies": {
"ava": "^0.20.0",
"eslint": "^4.1.1",
"husky": "^0.14.2",
"nyc": "^11.0.3"
},
"types": "./index.d.ts"
}