-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
{
"name": "@sajari/sdk-js",
"description": "Search.io JavaScript SDK",
"version": "2.10.8",
"main": "./dist/index.js",
"umd:main": "./dist/sajarisdk.umd.production.min.js",
"module": "./dist/sajarisdk.esm.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"contributors": [
"Ben Hinchley <[email protected]> (https://www.search.io)",
"David Howden <[email protected]> (https://www.search.io)",
"Search.io Support <[email protected]> (https://www.search.io)"
],
"homepage": "https://github.com/sajari/sdk-js",
"repository": {
"type": "git",
"url": "https://github.com/sajari/sdk-js.git"
},
"bugs": "https://github.com/sajari/sdk-js/issues",
"keywords": [
"autocomplete",
"hosted",
"instant",
"match",
"realtime",
"recommend",
"sajari",
"search",
"search api",
"search.io",
"search io"
],
"scripts": {
"start": "tsdx watch --format cjs,esm,umd --name SajariSDK",
"prebuild": "yarn generate:user-agent",
"build": "tsdx build --format cjs,esm,umd --name SajariSDK",
"pretest": "yarn generate:user-agent",
"test": "tsdx test",
"test:coverage": "tsdx test --coverage",
"prepublishOnly": "npm-run-all test build",
"docs": "typedoc src/index.ts --out docs",
"generate:user-agent": "node scripts/gen-useragent",
"release": "yarn build && yarn changeset publish"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"automock": false,
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.ts"
]
},
"devDependencies": {
"@changesets/cli": "^2.21.1",
"@types/jest": "^27.4.0",
"husky": "^4.2.5",
"msw": "^0.38.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.12",
"typescript": "^4.5.5",
"whatwg-fetch": "^3.6.2"
}
}