kingoftime-cli/package.json

55 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2023-04-14 13:13:50 +00:00
{
"name": "kingoftime-cli",
"version": "0.0.0",
2023-04-26 16:40:01 +00:00
"description": "King of Time CLI (unofficial)",
"author": "Adam Millerchip",
2023-04-14 13:13:50 +00:00
"bin": {
"kot": "./bin/run"
},
2023-04-14 13:54:48 +00:00
"homepage": "https://git.adamu.jp/adam/kingoftime-cli",
2023-04-14 13:13:50 +00:00
"license": "MIT",
"main": "dist/index.js",
2023-04-14 13:54:48 +00:00
"repository": "https://git.adamu.jp/adam/kingoftime-cli",
2023-04-14 13:13:50 +00:00
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"axios": "^1.3.5"
2023-04-14 13:13:50 +00:00
},
"devDependencies": {
"@oclif/test": "^2.3.14",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"mocha": "^9",
2023-04-16 15:12:51 +00:00
"oclif": "^3.8.0"
2023-04-14 13:13:50 +00:00
},
"oclif": {
"bin": "kot",
"dirname": "kot",
2023-04-16 15:12:51 +00:00
"commands": "./src/commands",
2023-04-14 13:13:50 +00:00
"plugins": [
2023-04-14 13:33:11 +00:00
"@oclif/plugin-help"
]
2023-04-14 13:13:50 +00:00
},
"scripts": {
2023-04-16 15:12:51 +00:00
"lint": "eslint . --ext .js --config .eslintrc",
2023-04-14 13:13:50 +00:00
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
2023-04-16 15:12:51 +00:00
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif readme && git add README.md"
2023-04-14 13:13:50 +00:00
},
"engines": {
"node": ">=12.0.0"
},
2023-04-14 13:54:48 +00:00
"bugs": "https://git.adamu.jp/adam/kingoftime-cli/issues",
2023-04-14 13:13:50 +00:00
"keywords": [
"oclif"
2023-04-16 15:12:51 +00:00
]
2023-04-14 13:13:50 +00:00
}