forked from MadisonReed/usps-webtools
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "usps-webtools-promise",
"version": "6.1.0",
"description": "API wrapper for the USPS Web-Tools, with Promises!",
"keywords": [
"usps",
"web-tools",
"web",
"tools",
"address",
"validation",
"standardization"
],
"repository": "https://github.com/Sparticuz/usps-webtools-promise.git",
"license": "MIT",
"author": {
"name": "Kyle McNally <[email protected]>"
},
"contributors": [
{
"name": "Sherod Taylor",
"email": "[email protected]"
},
{
"name": "Tim Marshall",
"email": "[email protected]"
},
{
"name": "Scott Stokes",
"email": "[email protected]"
}
],
"type": "module",
"exports": "./dist/usps.js",
"types": "./dist/usps.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"lint": "eslint \"**/*.[jt]s\"",
"test": "c8 --reporter=lcov --reporter=text --all --include=src ava"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx/esm"
]
},
"dependencies": {
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@rushstack/eslint-patch": "^1.6.0",
"@sparticuz/eslint-config": "^7.5.0",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^16.18.68",
"ava": "^6.0.1",
"c8": "^8.0.1",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16"
},
"overrides": {
"eslint-plugin-import": "npm:[email protected]"
}
}