-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "query-filter-kit",
"version": "1.0.4",
"description": "A javascript library, helps in building and parsing huge list of query filters, which are usually found in ecommerce websites",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"format": "prettier --write \"src/**/*.ts\"",
"tsc": "tsc",
"prepublishOnly": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pavanyekabote/query-filter-kit.git"
},
"keywords": [
"query",
"filter",
"builder",
"parser",
"ecommerce",
"search"
],
"author": "Pavan Kumar Yekabote",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavanyekabote/query-filter-kit/issues"
},
"homepage": "https://github.com/pavanyekabote/query-filter-kit#readme",
"dependencies": {
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1"
}
}