72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"name": "kingoftime-cli",
|
|
"version": "0.0.0",
|
|
"description": "King of Time CLI",
|
|
"author": "Adam Millerchip @adamu",
|
|
"bin": {
|
|
"kot": "./bin/run"
|
|
},
|
|
"homepage": "https://github.com/adamu/kingoftime-cli",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"repository": "adamu/kingoftime-cli",
|
|
"files": [
|
|
"/bin",
|
|
"/dist",
|
|
"/npm-shrinkwrap.json",
|
|
"/oclif.manifest.json"
|
|
],
|
|
"dependencies": {
|
|
"@oclif/core": "^2",
|
|
"@oclif/plugin-help": "^5",
|
|
"@oclif/plugin-plugins": "^2.4.4"
|
|
},
|
|
"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",
|
|
"@oclif/plugin-plugins"
|
|
],
|
|
"topicSeparator": " ",
|
|
"topics": {
|
|
"hello": {
|
|
"description": "Say hello to the world and others"
|
|
}
|
|
}
|
|
},
|
|
"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://github.com/adamu/kingoftime-cli/issues",
|
|
"keywords": [
|
|
"oclif"
|
|
],
|
|
"types": "dist/index.d.ts"
|
|
}
|