-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 800 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 800 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
{
"name": "countries-info",
"version": "1.0.7",
"description": "nodejs library for managing countries information",
"main": "lib/countrycodes.js",
"scripts": {
"test": "make test",
"lint": "./node_modules/.bin/gulp jshint"
},
"repository": {
"type": "git",
"url": "https://github.com/thegameofcode/countries-info.git"
},
"author": "The Game Of Code",
"license": "MIT",
"bugs": {
"url": "https://github.com/thegameofcode/countrycodes/issues"
},
"homepage": "https://github.com/thegameofcode/countries-info",
"devDependencies": {
"gulp": "^3.8.10",
"gulp-jshint": "^1.9.0",
"mocha": "^2.1.0",
"pre-commit": "0.0.11",
"which": "^1.0.8"
},
"dependencies": {
"async": "^0.9.0"
},
"pre-commit": [
"lint",
"test"
]
}