-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
52
53
54
55
56
57
{
"name": "kintone-form-model-generator",
"version": "1.0.16",
"description": "Generate type definitions compatible with @kintone/rest-api-client",
"bin": {
"kintone-form-model-generator": "bin/kintone-form-model-generator.js"
},
"main": "dist/index.js",
"keywords": [
"kintone",
"typescript"
],
"engines": {
"node": ">=12"
},
"repository": "git@github.com:yktakaha4/kintone-form-model-generator.git",
"author": "Yuuki Takahashi <20282867+yktakaha4@users.noreply.github.com>",
"homepage": "https://github.com/yktakaha4/kintone-form-model-generator",
"license": "MIT",
"scripts": {
"kintone-form-model-generator": "./bin/kintone-form-model-generator.js",
"prebuild": "rm -rf ./dist/",
"build": "webpack",
"lint": "run-p lint:*",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --ext .ts src",
"fix": "run-s fix:*",
"fix:prettier": "prettier -w .",
"fix:eslint": "npm run lint:eslint --fix",
"test": "jest --runInBand",
"dev": "ts-node ./src/index.ts"
},
"dependencies": {
"@kintone/rest-api-client": "^2.0.31",
"log4js": "^6.3.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}