-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "kqb",
"version": "2.0.0",
"description": "Type-safe query builder for Kintone",
"keywords": [
"kintone",
"query",
"typescript"
],
"homepage": "https://github.com/teppeis/kqb",
"repository": "teppeis/kqb",
"license": "MIT",
"author": "Teppei Sato <teppeis@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"!**/__tests__",
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist *.tsbuildinfo",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "run-p -lc --aggregate-output lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"prepack": "run-s clean build",
"test": "run-p -l --aggregate-output lint:* typecheck unit",
"typecheck": "tsc --noEmit",
"unit": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.86",
"eslint": "^8.57.1",
"eslint-config-flat-gitignore": "^0.1.8",
"eslint-config-teppeis": "^19.1.2",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.17"
}
}