-
Notifications
You must be signed in to change notification settings - Fork 530
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "algoliasearch-helper",
"version": "3.23.0",
"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",
"test": "../../scripts/retry.sh 3 'scripts/test.sh'",
"test:v4": "../../scripts/retry.sh 3 'scripts/test.sh'",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:v3": "yarn run test",
"version": "./scripts/update-version.js",
"prepare": "patch-package"
},
"author": {
"name": "Algolia Inc.",
"url": "https://www.algolia.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/algolia/instantsearch/tree/master/packages/algoliasearch-helper"
},
"files": [
"dist",
"src",
"index.js",
"index.d.ts",
"types/algoliasearch.d.ts",
"types/algoliasearch.js"
],
"devDependencies": {
"@metalsmith/sass": "1.4.0",
"browserify": "14.5.0",
"exorcist": "1.0.1",
"handlebars": "4.1.0",
"jest-watch-typeahead": "0.3.0",
"jsdoc-to-markdown": "8.0.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",
"pretty-bytes-cli": "2.0.0",
"pug": "2.0.3",
"uglify-js": "2.8.29"
},
"dependencies": {
"@algolia/events": "^4.0.1"
},
"peerDependencies": {
"algoliasearch": ">= 3.1 < 6"
}
}