This repository was archived by the owner on Jun 5, 2024. It is now read-only.
forked from Sparticuz/usps-webtools-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.33 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.33 KB
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
{
"name": "usps-webtools-promise",
"author": "Kyle McNally <kyle@kmcnally.net>",
"description": "API wrapper for the USPS Web-Tools, with Promises!",
"version": "3.1.4",
"main": "./dist/usps.js",
"types": "./dist/usps.d.ts",
"contributors": [
{
"name": "Sherod Taylor",
"email": "sherodtaylor@gmail.com"
},
{
"name": "Tim Marshall",
"email": "timothyjmarshall@gmail.com"
},
{
"name": "Scott Stokes",
"email": "scottspork@gmail.com"
}
],
"scripts": {
"lint": "eslint \"**/*.[jt]s\"",
"build": "rm -rf dist && tsc -p tsconfig.json",
"pretest": "npm run build",
"test": "c8 ava --timeout=30s"
},
"keywords": [
"usps",
"web-tools",
"web",
"tools",
"address",
"validation",
"standardization"
],
"dependencies": {
"xmlbuilder2": "^2.4.1"
},
"devDependencies": {
"@sparticuz/eslint-config": "^3.5.3",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"ava": "^3.15.0",
"c8": "^7.7.2",
"eslint": "^7.26.0",
"prettier": "^2.3.0",
"string.prototype.trimend": "^1.0.4",
"typescript": "^4.2.4"
},
"repository": "https://github.com/Sparticuz/usps-webtools-promise.git",
"engines": {
"node": ">=10.x"
},
"license": "MIT"
}