-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
128 lines (128 loc) · 4.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@kintone/cli",
"version": "1.12.2",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"description": "cli-kintone; The CLI tool for importing and exporting Kintone records.",
"bin": {
"cli-kintone": "cli.js"
},
"scripts": {
"start": "run-s clean:lib 'build:tsc --watch'",
"build": "run-s clean:lib build:tsc",
"build:all": "run-s build build:artifacts",
"build:artifacts": "run-s clean:artifacts build:executables license:analyze license:extract compress",
"build:executables": "run-s build:ncc package",
"build:tsc": "tsc --build ./tsconfig.build.json",
"build:ncc": "ncc build ./src/cli/main.ts -m",
"package": "pkg ./dist/index.js --compress Brotli -o bin/cli-kintone -t linux,macos,win",
"license:analyze": "license-manager analyze -c license-manager.config.js",
"license:extract": "license-manager extract -c license-manager.config.js -w .",
"compress": "zx ./scripts/compress-to-zip-file.mjs",
"typecheck": "tsc --project tsconfig.typecheck.json --pretty --noEmit",
"test": "jest",
"test:ci": "pnpm clean:test && jest --runInBand -c jest.config.ci.js",
"test:e2e": "cucumber-js",
"test:e2e:dev": "pnpm test:e2e --fail-fast",
"test:e2e:ci": "pnpm clean:test && node ./scripts/run-e2e-in-parallel.mjs",
"lint": "run-p -l lint:*",
"lint:eslint": "eslint ./ --max-warnings 0 --cache --cache-location ./node_modules/.cache/eslint/",
"lint:prettier": "prettier --check '**/*.{json,md,yml,yaml}' --cache",
"fix": "run-p fix:*",
"fix:lint": "run-s 'lint:eslint --fix'",
"fix:prettier": "run-s 'lint:prettier --write'",
"clean": "run-s clean:lib clean:artifacts clean:test",
"clean:lib": "rimraf lib",
"clean:artifacts": "rimraf bin artifacts dist",
"clean:test": "rimraf allure-results allure-report",
"doc:start": "pnpm --filter ./website start",
"doc:build": "pnpm --filter ./website build",
"doc:serve": "pnpm --filter ./website serve",
"doc:update-credits": "pnpm --filter ./website update-credits",
"update-contributors": "ts-node ./scripts/update-contributors.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kintone/cli-kintone.git"
},
"files": [
"CHANGELOG.md",
"cli.js",
"lib",
"!**/*.tsbuildinfo"
],
"keywords": [
"kintone"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kintone/cli-kintone/issues"
},
"homepage": "https://github.com/kintone/cli-kintone/#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@cucumber/cucumber": "^10.9.0",
"@cybozu/eslint-config": "^24.0.0-beta.0",
"@cybozu/license-manager": "^1.2.1",
"@octokit/rest": "^20.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.64",
"@types/node-rsa": "^1.1.4",
"@types/rollup-plugin-auto-external": "^2.0.5",
"@types/yargs": "^17.0.33",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^2.4.5",
"@vercel/ncc": "^0.38.2",
"ajv": "^8.17.1",
"allure-commandline": "^2.32.0",
"allure-cucumberjs": "^2.15.1",
"allure-jest": "^3.0.6",
"allure-js-commons": "^3.0.6",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"glob": "^10.4.5",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"pkg": "^5.8.1",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"zx": "^8.2.0"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"@kintone/plugin-manifest-validator": "^10.2.2",
"@kintone/rest-api-client": "^5.5.2",
"chalk": "4.1.2",
"chokidar": "^4.0.1",
"csv-parse": "^4.16.3",
"csv-stringify": "5.6.5",
"https-proxy-agent": "^7.0.5",
"iconv-lite": "^0.6.3",
"node-rsa": "^1.1.1",
"yargs": "^17.7.2",
"yauzl": "^3.1.3",
"yazl": "^3.1.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"braces": ">=3.0.3",
"undici": ">=6.20.1",
"ws": ">=8.18.0"
}
}
}