This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
93 lines (93 loc) · 2.84 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
87
88
89
90
91
92
93
{
"name": "algoliasearch-helper",
"version": "3.13.3",
"description": "Helper for implementing advanced search features with algolia",
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://community.algolia.com/algoliasearch-helper-js/",
"scripts": {
"build": "./scripts/build.sh",
"lint": "eslint .",
"doc": "node documentation-src/metalsmith.js",
"doc:publish": "yarn run doc && gh-pages -d documentation",
"doc:staging": "scripts/staging-doc.sh",
"readme:toc": "doctoc --notitle README.md --maxlevel 3",
"test": "scripts/retry.sh 3 'scripts/test.sh'",
"test:unit": "jest",
"test:watch": "jest --watch",
"release": "./scripts/release.js",
"changelog:view-last": "conventional-changelog -u -n scripts/conventional-changelog/",
"changelog:update": "conventional-changelog -i CHANGELOG -s -u -n scripts/conventional-changelog/",
"prepare": "patch-package"
},
"author": {
"name": "Algolia Inc.",
"url": "https://www.algolia.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/algolia/algoliasearch-helper-js.git"
},
"files": [
"dist",
"src",
"index.js",
"index.d.ts",
"types/algoliasearch.d.ts",
"types/algoliasearch.js"
],
"devDependencies": {
"@types/algoliasearch": "3.34.11",
"algoliasearch": "4.8.3",
"doctoc": "1.3.0",
"patch-package": "6.2.2",
"eslint": "6.8.0",
"eslint-config-algolia": "16.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-deprecation": "1.3.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jasmine": "4.1.0",
"eslint-plugin-jest": "27.0.4",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.26.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-vue": "9.8.0",
"eslint-plugin-wdio": "5.11.0",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "4.31.2",
"prettier": "2.4.1",
"gh-pages": "1.0.0",
"jest": "24.7.1",
"jest-watch-typeahead": "0.3.0",
"browserify": "14.5.0",
"exorcist": "1.0.1",
"uglify-js": "2.8.29",
"colors": "1.1.2",
"conventional-changelog-cli": "1.3.2",
"pretty-bytes-cli": "2.0.0",
"prompt": "1.0.0",
"semver": "5.3.0",
"shelljs": "0.7.8",
"mversion": "1.13.0",
"yargs": "13.2.4",
"jsdoc-to-markdown": "8.0.0",
"handlebars": "4.1.0",
"metalsmith": "2.5.1",
"metalsmith-in-place": "1.4.4",
"metalsmith-layouts": "1.8.1",
"metalsmith-markdown": "1.3.0",
"metalsmith-metallic": "1.0.0",
"@metalsmith/sass": "1.4.0",
"pug": "2.0.3",
"typescript": "5.1.3"
},
"dependencies": {
"@algolia/events": "^4.0.1"
},
"peerDependencies": {
"algoliasearch": ">= 3.1 < 6"
}
}