-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "kintone-cli",
"version": "0.5.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test:init": "node dist/index.js init --quick",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --check './src/**/*.ts'",
"format:fix": "prettier --write './src/**/*.ts'",
"test": "mkdir -p ./unit_test/build && rm -rf ./unit_test/build/* && jest --silent --forceExit"
},
"preferGlobal": true,
"bin": {
"kintone-cli": "./dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"ansi-regex": "^6.0.1",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"cross-spawn": "^7.0.3",
"inquirer": "^8.2.5",
"jsonfile": "^6.1.0",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@cybozu/eslint-config": "^22.0.1",
"@jest/globals": "^29.6.4",
"@types/cross-spawn": "^6.0.3",
"@types/inquirer": "^8.2.5",
"@types/jsonfile": "^6.1.1",
"@types/node": "^20.5.9",
"babel-jest": "^29.6.4",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"lodash": "^4.17.21",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kintone-labs/kintone-cli.git"
},
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kintone-labs/kintone-cli/issues"
},
"homepage": "https://github.com/kintone-labs/kintone-cli#README"
}