forked from i-rocky/country-list-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.61 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "country-list-js",
"version": "3.1.3",
"description": "Country list with ISO2, ISO3 code, continent, capital, dialing code",
"homepage": "https://github.com/i-rocky/country-list-js.git",
"author": {
"name": "Rocky",
"url": "https://github.com/users/i-rocky",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i-rocky/country-list-js.git"
},
"bugs": {
"url": "https://github.com/i-rocky/country-list-js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/i-rocky/country-list-js/blob/master/LICENSE"
}
],
"main": "index.js",
"keywords": [
"country",
"geopolitical",
"iso2",
"iso3",
"phone",
"continent",
"capital",
"region"
],
"scripts": {
"build": "gulp",
"start": "micro server.js",
"dev": "micro-dev",
"pretest": "npm install",
"test": "eslint *.js && mocha t/*.js",
"preversion": "npm run test",
"version": "",
"postversion": "git push --tags && npm publish",
"debug": "node --inspect node_modules/.bin/micro-dev server.js"
},
"devDependencies": {
"browserify": "^16.2.3",
"chai": "^4.0.2",
"eslint": "^5.16.0",
"gulp": "^4.0.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify-es": "^3.0.0",
"micro-dev": "^3.0.0",
"mocha": "^10.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"test-listen": "^1.1.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"micro": "^9.3.3"
}
}