-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
62 lines (62 loc) · 1.27 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
{
"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",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"default": "./dist/cjs/index.cjs"
}
},
"scripts": {
"build": "rollup --config",
"test": "mocha 'tests/**/*.{mjs,js}'"
},
"author": "Smarty SDK Team <[email protected]> (https://www.smarty.com)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github:smartystreets/smartystreets-javascript-sdk"
},
"devDependencies": {
"@babel/preset-env": "^7.25.8",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"chai": "^4.3.6",
"mocha": "^10.2.0",
"rollup": "^4.22.5",
"rollup-plugin-delete": "^2.1.0"
},
"dependencies": {
"axios": "^1.7.7",
"axios-retry": "^4.5.0"
}
}