-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.05 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
{
"name": "ginue",
"version": "3.0.0-beta9012",
"description": "ginue is the CLI tool to get settings of kintone via kintone REST API.",
"bin": {
"ginue": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"apis:all": "curl https://$KINTONE_SUBDOMAIN.cybozu.com/k/v1/apis.json|jq '.apis|keys|map(select(.|test(\"app/|field/acl/|record/acl/\"))|select(.|test(\"preview/|/put\")|not)|sub(\"/get\";\".json\"))|sort' > apis/all.json",
"apis:ginue": "cat lib/commands.json|jq '.|keys' > apis/ginue.json",
"apis:diff": "yarn apis:all && yarn apis:ginue && diff -u apis/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goqoo-on-kintone/ginue.git"
},
"license": "MIT",
"files": [
"dist",
"src",
"tsconfig.json",
"README.md"
],
"bugs": {
"url": "https://github.com/goqoo-on-kintone/ginue/issues"
},
"homepage": "https://github.com/goqoo-on-kintone/ginue#readme",
"engines": {
"node": ">=16"
},
"directories": {
"test": "test/"
},
"devDependencies": {
"@kintone/rest-api-client": "^3.1.9",
"@types/inquirer": "^9.0.1",
"@types/jest": "^28.1.8",
"@types/lodash": "^4.14.184",
"@types/minimist": "^1.2.2",
"@types/mkdirp": "^1.0.2",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.1",
"jest": "^29.0.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "4.7"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"gyuma": "^0.6.1",
"https": "^1.0.0",
"inquirer": "^8.0.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"netrc-parser": "^3.1.6",
"node-fetch": "^2.3.0",
"open": "^8.4.0",
"prettier": "^2.2.1",
"proxy-agent": "^5.0.0",
"querystring": "^0.2.1",
"rc-config-loader": "^4.0.0",
"twins-diff": "^0.1.5"
}
}