-
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) · 898 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 898 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": "zip-it",
"version": "1.2.1",
"description": "A small library that helps you to verify postal (zip) codes",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify index.js --standalone zipit -o zip-it.js && uglifyjs zip-it.js -c \"evaluate=false\" -m --source-map zip-it-min.map -o zip-it-min.js",
"postversion": "git push && git push --tags"
},
"keywords": [
"zip",
"zipcode",
"zipcodes",
"postal",
"codes",
"zip code",
"global",
"verify",
"verification"
],
"author": "Gil Zieder",
"license": "ISC",
"dependencies": {},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/GilZ/zip-it.git"
},
"bugs": {
"url": "https://github.com/GilZ/zip-it/issues"
},
"homepage": "https://github.com/GilZ/zip-it#readme"
}