-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 858 Bytes
/
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
{
"name": "queryforge",
"version": "1.0.0",
"license": "MIT",
"author": "cb.felipe",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "yarn tsc",
"dev": "tsnd --respawn --debounce 1000 src/index.ts",
"format": "prettier-package-json --write ./package.json"
},
"types": "lib/index.d.ts",
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier-package-json": "^2.8.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"lib"
]
},
"prettier": {
"endOfLine": "lf",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
}
}