64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "kingoftime-cli",
|
|
"version": "0.0.0",
|
|
"description": "King of Time CLI",
|
|
"author": "Adam Millerchip @adamu",
|
|
"bin": {
|
|
"kot": "./bin/run"
|
|
},
|
|
"homepage": "https://git.adamu.jp/adam/kingoftime-cli",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"repository": "https://git.adamu.jp/adam/kingoftime-cli",
|
|
"files": [
|
|
"/bin",
|
|
"/dist",
|
|
"/npm-shrinkwrap.json",
|
|
"/oclif.manifest.json"
|
|
],
|
|
"dependencies": {
|
|
"@oclif/core": "^2",
|
|
"@oclif/plugin-help": "^5"
|
|
},
|
|
"devDependencies": {
|
|
"@oclif/test": "^2.3.14",
|
|
"@types/chai": "^4",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^16.18.23",
|
|
"chai": "^4",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-oclif": "^4",
|
|
"eslint-config-oclif-typescript": "^1.0.3",
|
|
"mocha": "^9",
|
|
"oclif": "^3",
|
|
"shx": "^0.3.3",
|
|
"ts-node": "^10.9.1",
|
|
"tslib": "^2.5.0",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"oclif": {
|
|
"bin": "kot",
|
|
"dirname": "kot",
|
|
"commands": "./dist/commands",
|
|
"plugins": [
|
|
"@oclif/plugin-help"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "shx rm -rf dist && tsc -b",
|
|
"lint": "eslint . --ext .ts --config .eslintrc",
|
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
"posttest": "npm run lint",
|
|
"prepack": "npm run build && oclif manifest && oclif readme",
|
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
"version": "oclif readme && git add README.md"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"bugs": "https://git.adamu.jp/adam/kingoftime-cli/issues",
|
|
"keywords": [
|
|
"oclif"
|
|
],
|
|
"types": "dist/index.d.ts"
|
|
}
|