-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 857 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
36
37
38
39
40
41
{
"name": "countries-api",
"version": "2.0.2",
"description": "module to get world countries with ease",
"main": "index.js",
"scripts": {
"test": "mocha test/*",
"docs": "apidoc -i lib/ -o doc/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GJ2511/countries.git"
},
"keywords": [
"node",
"countries",
"json"
],
"engines": {
"node": ">=5.10.0"
},
"author": "@GJ (Gaurav Joshi)",
"license": "ISC",
"dependencies": {
"response-format": "^1.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"apidoc": "^0.16.1",
"expect.js": "^0.3.1",
"mocha": "^2.5.3"
},
"bugs": {
"url": "https://github.com/GJ2511/countries/issues"
},
"homepage": "https://github.com/GJ2511/countries#readme",
"directories": {
"doc": "doc",
"test": "test"
}
}