-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.7 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "smartystreets-javascript-sdk",
"version": "0.0.0",
"description": "Quick and easy Smarty address validation.",
"keywords": [
"smarty",
"smartystreets",
"address",
"validation",
"verification",
"verify",
"validate",
"street-address",
"geocoding",
"addresses",
"zipcode",
"autocomplete",
"autosuggest",
"suggestions",
"international",
"http",
"sdk"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"default": "./dist/cjs/index.cjs"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "rollup --config",
"test": "npm run test:js && npm run test:ts",
"test:js": "mocha 'tests/**/*.{mjs,js}'",
"test:ts": "mocha --require tsx/cjs 'tests/**/*.ts'"
},
"author": "Smarty SDK Team <support@smarty.com> (https://www.smarty.com)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/smarty/smartystreets-javascript-sdk.git"
},
"devDependencies": {
"@babel/preset-env": "^7.28.5",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"chai": "^6.2.1",
"mocha": "^11.7.5",
"prettier": "3.6.2",
"rollup": "^4.53.3",
"rollup-plugin-delete": "^3.0.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.2",
"axios-retry": "^4.5.0",
"tslib": "^2.8.1"
}
}