-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@ssibrahimbas/query",
"version": "0.0.4",
"description": "A fast, synchronized and dynamic query builder package.",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"files": [
"dist/**/*"
],
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": ["query", "query-builder", "sql", "chain","typescript"],
"homepage": "https://github.com/ssibrahimbas/query/blob/master/README.md",
"bugs": {
"url": "https://github.com/ssibrahimbas/query/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ssibrahimbas/query.git"
},
"scripts": {
"test": "jest --watchAll --no-cache",
"clear": "del-cli ./build/*",
"build": "npm run clear && tsc"
},
"author": "Sami Salih İBRAHİMBAŞ",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.5.1",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleNameMapper": {
"@/(.*)": "<rootDir>/$1",
"~/(.*)": "<rootDir>/$1"
}
}
}