forked from algolia/algoliasearch-client-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 3.77 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "algoliasearch",
"version": "3.25.0",
"description": "AlgoliaSearch API JavaScript client",
"main": "index.js",
"jsdelivr": "./dist/algoliasearch.min.js",
"browser": {
"./index.js": "./src/browser/builds/algoliasearch.js",
"./lite.js": "./src/browser/builds/algoliasearchLite.js"
},
"scripts": {
"build": "./scripts/build",
"dev": "APP_ENV=development DEBUG=zuul* zuul --no-coverage --local 8080 -- test/run-browser.js",
"dev-integration": "APP_ENV=development DEBUG=zuul* zuul --no-coverage --local 8080 -- test/run-integration.js",
"examples": "http-server . -a 0.0.0.0",
"watch": "watchify index.js -d -v -s algoliasearch -o dist/algoliasearch.js",
"release": "git clean dist/ -f && git checkout dist/ && yarn && ./scripts/release && APP_ENV=production npm run build",
"test": "./scripts/test",
"test-ci": "./scripts/test-ci",
"lint": "./scripts/lint"
},
"browserify": {
"transform": [
"envify"
]
},
"bundlesize": [
{
"path": "./dist/algoliasearch.?(jquery|angular|parse).min.js",
"maxSize": "18 kB"
},
{
"path": "./dist/algoliasearch.?(jquery|angular|parse).js",
"maxSize": "46 kB"
},
{
"path": "./dist/algoliasearchLite.min.js",
"maxSize": "13 kB"
},
{
"path": "./dist/algoliasearchLite.js",
"maxSize": "32 kB"
}
],
"repository": {
"type": "git",
"url": "git://github.com/algolia/algoliasearch-client-js.git"
},
"keywords": [
"algolia",
"search",
"search api",
"instant search",
"realtime",
"autocomplete"
],
"homepage": "https://www.algolia.com/doc/api-client/javascript/",
"bugs": "https://github.com/algolia/algoliasearch-client-js/issues",
"author": {
"name": "Algolia SAS",
"url": "https://www.algolia.com"
},
"contributors": [
{
"name": "Algolia Team <[email protected]>",
"url": "http://www.algolia.com"
}
],
"files": [
"src",
"dist",
"plugins",
"index.js",
"lite.js",
"reactnative.js",
"bower.json"
],
"dependencies": {
"agentkeepalive": "^2.2.0",
"debug": "^2.6.8",
"envify": "^4.0.0",
"es6-promise": "^4.1.0",
"events": "^1.1.0",
"foreach": "^2.0.5",
"global": "^4.3.2",
"inherits": "^2.0.1",
"isarray": "^2.0.1",
"load-script": "^1.0.0",
"object-keys": "^1.0.11",
"querystring-es3": "^0.2.1",
"reduce": "^1.0.1",
"semver": "^5.1.0",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"angular": "^1.6.4",
"array.from": "^1.0.3",
"async": "^1.5.2",
"babel-eslint": "^4.1.6",
"bowser": "^1.7.0",
"browserify": "^14.5.0",
"bulk-require": "^1.0.0",
"bulkify": "^1.2.0",
"bundle-collapser": "^1.2.1",
"bundlesize": "^0.15.3",
"chance": "^1.0.9",
"compression": "^1.6.2",
"deumdify": "^1.2.4",
"domready": "0.3.0",
"eslint": "^1.7.3",
"eslint-config-airbnb": "^0.1.0",
"eslint-config-algolia": "4.2.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.15.3",
"faux-jax": "^5.0.6",
"http-proxy": "^1.13.3",
"http-server": "^0.10.0",
"jquery": "^3.2.1",
"jquery-ajax-transport-xdomainrequest": "^1.0.4",
"lodash-compat": "^3.10.2",
"morgan": "^1.8.2",
"mversion": "^1.10.1",
"pretty-bytes": "^2.0.1",
"proxy": "^0.2.4",
"proxy-agent": "^2.0.0",
"self-signed": "^1.3.1",
"server-destroy-vvo": "^1.0.1",
"sinon": "^1.17.7",
"superagent": "^3.5.2",
"tap-bail": "^1.0.0",
"tap-dot": "^1.0.5",
"tape": "^4.5.1",
"uglify-js": "2.6.4",
"url-parse": "^1.1.9",
"watchify": "^3.9.0",
"webpack": "^1.13.1",
"xhr": "^2.4.0",
"zuul": "^3.10.1",
"zuul-ngrok": "^4.0.0"
},
"engines": {
"node": ">=0.8"
},
"license": "MIT"
}