accent/cli/package.json
Simon Prévost b7883a7525 [cli] v0.9.1
2020-02-13 10:24:57 -05:00

76 lines
1.7 KiB
JSON

{
"name": "accent-cli",
"version": "0.9.1",
"author": "Simon Prévost",
"description": "Accent CLI",
"bin": {
"accent": "./bin/run"
},
"dependencies": {
"@oclif/command": "1.5.6",
"@oclif/config": "1.9.0",
"@oclif/plugin-help": "2.1.4",
"@oclif/plugin-not-found": "1.2.2",
"@types/decamelize": "1.2.0",
"@types/form-data": "2.2.1",
"@types/fs-extra": "5.0.1",
"@types/glob": "5.0.35",
"@types/node-fetch": "1.6.7",
"mkdirp": "0.5.1",
"chalk": "2.4.1",
"cli-ux": "4.9.3",
"decamelize": "2.0.0",
"form-data": "2.3.3",
"glob": "7.1.3",
"node-fetch": "2.3.0",
"tslib": "1.9.3",
"tslint-config-prettier": "1.17.0"
},
"devDependencies": {
"@oclif/dev-cli": "1.21.0",
"@oclif/test": "1.0.1",
"@oclif/tslint": "3.1.1",
"@types/chai": "4.1.2",
"@types/mkdirp": "0.5.2",
"@types/mocha": "5.0.0",
"@types/node": "9.6.0",
"chai": "4.1.2",
"globby": "8.0.1",
"mocha": "5.0.5",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.2.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib"
],
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "accent",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mirego/accent.git"
},
"scripts": {
"build": "rm -rf lib && tsc",
"clean": "rm -f .oclif.manifest.json",
"prepublishOnly": "npm run build && oclif-dev readme && oclif-dev manifest"
},
"types": "lib/index.d.ts"
}