-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
36 lines (36 loc) · 874 Bytes
/
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
{
"name": "philippines",
"version": "1.0.0",
"description": "Provides a complete list of Philippine towns, cities, provinces and regions.",
"main": "index.js",
"files": [
"README.md",
"index.js",
"cities.json",
"provinces.json",
"regions.json"
],
"scripts": {
"release": "npm publish && git push --follow-tags",
"major-release": "npm version major && npm run release",
"minor-release": "npm version minor && npm run release",
"patch-release": "npm version patch && npm run release"
},
"keywords": [
"philippines",
"towns",
"cities",
"provinces",
"regions"
],
"author": {
"name": "Roy Evan Sia",
"email": "[email protected]",
"url": "https://github.com/darklight721"
},
"engines": {
"node": ">=0.10.0"
},
"repository": "darklight721/philippines",
"license": "MIT"
}