-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "filterion",
"version": "1.5.3",
"description": "A declarative JavaScript library for search params orchestration.",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/maxprilutskiy/filterion",
"author": "Max Prilutskiy",
"license": "MIT",
"private": false,
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/travis-cli": "^17.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.3",
"typescript": "^5.0.4"
},
"dependencies": {},
"scripts": {
"purge": "rm -rf node_modules",
"clean": "rm -rf build coverage",
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .js,.ts",
"prepublishOnly": "yarn test && yarn build",
"prepare": "husky install"
},
"files": [
"build"
],
"keywords": [
"querystring",
"query-string",
"urlsearchparams",
"query",
"string",
"filter",
"criteria",
"search",
"typescript",
"javascript",
"library"
]
}