-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "search-string",
"version": "4.0.0",
"description": "Another parser for advanced search query syntax.",
"main": "dist/searchString.js",
"typings": "dist/searchString.d.ts",
"files": [
"dist"
],
"scripts": {
"ci": "npm run lint && npm test",
"lint": "eslint ./src --ext .ts",
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc",
"test": "jest --coverage"
},
"author": "Marcus Ericsson <[email protected]> (https://mixmax.com)",
"license": "MIT",
"keywords": [
"query parser",
"querystrings",
"search",
"search syntax parser",
"search query"
],
"repository": "[email protected]:mixmaxhq/search-string.git",
"devDependencies": {
"@mixmaxhq/jest-coverage-config": "^2.2.3",
"@mixmaxhq/prettier-config": "^1.0.0",
"@mixmaxhq/ts-config": "^3.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"eslint": "^6.8.0",
"eslint-config-mixmax": "^4.8.0",
"jest": "^29.7.0",
"prettier": "^1.19.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}