-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "kintone-query-builder",
"version": "0.1.5",
"description": "kintone query builder and parser",
"main": "./dist/main.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc -b tsconfig.json",
"test": "jest",
"testWithCoverage": "jest --coverage",
"lint": "eslint src tests --ext .ts",
"postlint": "prettier -c \"./**/*.ts\"",
"format": "run-s \"format:eslint -- {1}\" \"format:prettier -- {1}\" --",
"format:eslint": "eslint --fix",
"format:prettier": "prettier --write",
"format-all": "npm run format \"./**/*.ts\"",
"format-all:eslint": "eslint --fix \"./**/*.ts\"",
"format-all:prettier": "prettier --write \"./**/*.ts\""
},
"keywords": [
"kintone"
],
"homepage": "https://github.com/toyokumo/kintone-query-builder-js",
"repository": {
"type": "git",
"url": "https://github.com/toyokumo/kintone-query-builder-js"
},
"author": "toyokumo",
"license": "Apache-2.0",
"devDependencies": {
"@toyokumo/eslint-config": "^1.0.8",
"@toyokumo/prettier-config": "^1.0.1",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"dependencies": {
"ebnf": "^1.9.0"
}
}