-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.25 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
51
52
53
54
{
"name": "countries-db",
"version": "1.2.0",
"description": "The full list of countries with their most important data.",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/rollup/dist/bin/rollup -c",
"test": "yarn run build && mocha test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuelmhtr/countries-db.git"
},
"mocha": {
"ui": "bdd",
"timeout": 1000,
"fullTrace": true,
"recursive": true,
"exit": true,
"bail": true
},
"keywords": [
"countries",
"iso",
"country",
"data",
"info",
"information",
"database",
"db",
"iso-3166",
"iso3166"
],
"author": "Manuel de la Torre",
"license": "MIT",
"bugs": {
"url": "https://github.com/manuelmhtr/countries-db/issues"
},
"homepage": "https://github.com/manuelmhtr/countries-db#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"proxyquire": "^2.1.3",
"rollup": "^2.26.5",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^9.0.3"
}
}