-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "zip-state",
"version": "1.0.3",
"description": "Lightweight mapping of USPS ZIP Codes to their assigned region.",
"main": "zip-state.js",
"private": true,
"engines": {
"node": ">=14.14"
},
"scripts": {
"build": "node ./scripts/build.js",
"package": "npm run build && npm run test && npm pack --dry-run ./zip-state",
"publish": "npm run package && node ./scripts/confirm-publish.js && npm publish ./zip-state",
"example-browser": "node ./scripts/example.js",
"example-common": "node ./examples/common.js",
"example-module": "node ./examples/module.mjs",
"example-ts": "ts-node ./examples/typescript.ts",
"test:examples": "npm run example-common && npm run example-module && npm run example-ts",
"test:script": "node ./scripts/test.js",
"test": "npm run test:script && npm run test:examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alecperkins/zip-state.git"
},
"keywords": [
"mail",
"mailing",
"postal",
"postalcode",
"regions",
"states",
"usps",
"zip",
"zipcode"
],
"author": "Alec Perkins <code@alecperkins.me>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/alecperkins/zip-state/issues"
},
"homepage": "https://alecperkins.net/zip-state",
"devDependencies": {
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}