-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.32 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "addsearch-js-client",
"version": "1.0.1",
"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": "dist/index.js",
"jsdelivr": "./dist/addsearch-js-client.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "npm run test && webpack && tsc",
"watch": "webpack --watch",
"watch:tsc": "tsc --watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"test": "mocha --recursive --require ts-node/register 'test/**/*.test.ts'",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"lint:watch": "nodemon --exec 'npm run lint' --watch src --ext ts"
},
"dependencies": {
"axios": "^1.7.2",
"buffer": "^6.0.3",
"es6-promise": "^4.2.8",
"js-base64": "^3.6.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.12.1",
"@types/mocha": "^10.0.10",
"@typescript-eslint/parser": "^8.18.1",
"axios-mock-adapter": "^1.21.2",
"babel-loader": "^9.1.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-webpack-plugin": "^3.1.1",
"esm": "^3.2.25",
"fetch-mock": "^12.1.0",
"mocha": "^10.8.2",
"nodemon": "^3.1.9",
"prettier": "^3.3.3",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"uglify-js": "^3.12.0",
"webpack": "^5.76.1",
"webpack-cli": "^4.10.0"
},
"overrides": {
"braces": "3.0.3"
}
}