forked from algolia/algoliasearch-client-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 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
{
"version": "4.24.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "node --max-old-space-size=4096 scripts/build.js",
"generate:exports": "node scripts/generate-exports",
"lint": "eslint . --ext .js,.ts --fix && node ./scripts/sort-package-json.js",
"playground": "./scripts/prepare-playground.sh && yarn serve",
"pre-commit": "yarn test:lint && yarn test:types",
"release": "shipjs prepare",
"setup:browser": "yarn node scripts/setup-test-browser.js",
"test:browser-ci": "yarn setup:browser && ./scripts/prepare-test-browser.sh && wdio ./wdio.saucelabs.conf.js",
"test:browser-locally": "yarn setup:browser && ./scripts/prepare-test-browser.sh && wdio ./wdio.local.conf.js",
"test:build-declarations": "node --max-old-space-size=4096 scripts/test-build-declarations.js",
"test:build-size": "bundlesize",
"test:exports": "lerna run test:exports",
"test:lint": "eslint . --ext .js,.ts",
"test:locally": "lerna clean --yes && yarn lint && yarn test:types && yarn test:unit",
"test:types": "yarn tsc",
"test:unit": "./scripts/prepare-test-unit.sh && lerna clean --yes && jest --verbose",
"update": "rm -rf node_modules && rm -f yarn.lock && lerna clean --yes && yarn install"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit"
}
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"@babel/preset-typescript": "7.8.3",
"@microsoft/api-extractor": "7.18.0",
"@rollup/plugin-alias": "3.0.1",
"@rollup/plugin-json": "4.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"@types/jest": "25.1.4",
"@types/node": "13.9.0",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"@wdio/cli": "5.18.7",
"@wdio/jasmine-framework": "5.18.6",
"@wdio/local-runner": "5.18.7",
"@wdio/sauce-service": "5.16.10",
"@wdio/selenium-standalone-service": "5.16.10",
"@wdio/spec-reporter": "5.18.7",
"@wdio/static-server-service": "5.16.10",
"barrelsby": "2.2.0",
"bundlesize": "0.18.0",
"cross-fetch": "3.1.5",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-algolia": "15.0.0",
"eslint-config-prettier": "6.10.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-functional": "3.0.1",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-simple-import-sort": "5.0.1",
"eslint-plugin-sonarjs": "0.5.0",
"eslint-plugin-wdio": "5.13.2",
"fs-extra": "8.1.0",
"glob": "7.1.6",
"husky": "4.2.3",
"jest": "25.1.0",
"jest-mock-console": "1.0.0",
"lerna": "3.20.2",
"nock": "12.0.2",
"prettier": "1.19.1",
"readable-stream": "3.6.0",
"rollup": "1.32.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-filesize": "6.2.1",
"rollup-plugin-ignore": "1.0.5",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-terser": "5.2.0",
"rollup-plugin-typescript2": "0.26.0",
"serve": "11.3.0",
"shipjs": "0.23.3",
"sort-package-json": "1.40.0",
"ts-jest": "25.2.1",
"ts-mockito": "2.5.0",
"ts-node": "8.6.2",
"typescript": "3.8.3",
"webdriverio": "5.18.7",
"xhr-mock": "2.5.1"
},
"engines": {
"node": ">= 8.0.0",
"yarn": ">= 1.6.0"
},
"bundlesize": [
{
"path": "packages/algoliasearch/dist/algoliasearch.umd.js",
"maxSize": "8.4KB"
},
{
"path": "packages/algoliasearch/dist/algoliasearch-lite.umd.js",
"maxSize": "4.6KB"
},
{
"path": "packages/recommend/dist/recommend.umd.js",
"maxSize": "4.4KB"
}
]
}