-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
47
48
49
50
{
"name": "iso-3166-1",
"version": "2.1.1",
"description": "Lookup information with ISO 3166-1 alpha-2, ISO 3166-1 alpha-3 and ISO 3166-1 numeric",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "mocha -r ts-node/register tests/tests.ts",
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ecrmnn/iso-3166-1"
},
"keywords": [
"iso-3166",
"ISO 3166-1",
"ISO 3166-1 alpha-2",
"ISO 3166-1 alpha-3",
"ISO 3166-1 numeric",
"alpha-2",
"alpha-3",
"ISO",
"lookup",
"country",
"countries",
"geo"
],
"author": {
"name": "Daniel Eckermann",
"email": "[email protected]",
"url": "http://danieleckermann.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecrmnn/iso-3166-1/issues"
},
"homepage": "https://github.com/ecrmnn/iso-3166-1",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"chai": "^3.5.0",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {}
}