-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.85 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
73
{
"name": "addsearch-js-client",
"version": "0.8.16",
"description": "AddSearch API JavaScript client",
"repository": {
"type": "git",
"url": "git://github.com/AddSearch/js-client-library.git"
},
"keywords": [
"addsearch",
"search",
"search api",
"autocomplete",
"instant search",
"predictive search",
"search suggestions"
],
"homepage": "https://www.addsearch.com/",
"bugs": "https://github.com/AddSearch/js-client-library/issues",
"license": "MIT",
"author": {
"name": "AddSearch",
"url": "https://www.addsearch.com"
},
"contributors": [
{
"name": "AddSearch Developers <[email protected]>",
"url": "https://www.addsearch.com"
}
],
"main": "index.js",
"jsdelivr": "./dist/addsearch-js-client.min.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts",
"src"
],
"scripts": {
"build": "npm run test && ./node_modules/webpack-cli/bin/cli.js",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"test": "./node_modules/mocha/bin/mocha.js --recursive --require @babel/register",
"watch": "./node_modules/webpack-cli/bin/cli.js --watch"
},
"dependencies": {
"axios": "^1.7.2",
"buffer": "^6.0.3",
"es6-promise": "^4.2.8",
"js-base64": "^3.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/register": "^7.12.1",
"axios-mock-adapter": "^1.21.2",
"babel-loader": "^9.1.2",
"eslint": "^8.45.0",
"eslint-webpack-plugin": "^3.1.1",
"esm": "^3.2.25",
"fetch-mock": "^12.1.0",
"mocha": "^10.0.0",
"prettier": "^3.3.3",
"terser-webpack-plugin": "^5.3.1",
"uglify-js": "^3.12.0",
"webpack": "^5.76.1",
"webpack-cli": "^4.10.0"
},
"overrides": {
"braces": "3.0.3"
}
}