-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.18 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
{
"private": false,
"name": "@prospectwith/us-postal-code-to-state-name",
"version": "0.1.5",
"author": "ProspectWith <[email protected]>",
"license": "MIT",
"description": "Convert your US postal code to the name of the state",
"homepage": "https://github.com/prospectwith/us-postal-code-to-state-name",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc"
},
"keywords": [
"postal code",
"state name",
"us postal code"
],
"files": [
"data/*",
"dist/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/prospectwith/us-postal-code-to-state-name.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/prospectwith/us-postal-code-to-state-name/issues"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@types/node": "16.7.10",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "7.0.4",
"prettier": "2.2.1",
"typescript": "4.1.2"
}
}