You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
2.8 KiB
105 lines
2.8 KiB
{
|
|
"name": "@beaussan/nbx",
|
|
"description": "My own personal cli",
|
|
"version": "2.4.0",
|
|
"author": "Nicolas Beaussart @beaussan",
|
|
"bin": {
|
|
"nbx": "./bin/run"
|
|
},
|
|
"bugs": "https://github.com/beaussan/nbx/issues",
|
|
"dependencies": {
|
|
"@oclif/command": "1.5.19",
|
|
"@oclif/config": "1.14.0",
|
|
"@oclif/errors": "1.2.2",
|
|
"@oclif/plugin-help": "2.2.3",
|
|
"@oclif/plugin-not-found": "1.2.3",
|
|
"@oclif/plugin-warn-if-update-available": "1.7.0",
|
|
"axios": "0.19.2",
|
|
"colors": "1.4.0",
|
|
"cosmiconfig": "6.0.0",
|
|
"gluegun": "4.2.0",
|
|
"isomorphic-git": "1.0.0",
|
|
"latest-version": "5.1.0",
|
|
"prompts": "2.3.1",
|
|
"tslib": "1.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.8.6",
|
|
"@babel/preset-env": "7.8.6",
|
|
"@babel/preset-typescript": "7.8.3",
|
|
"@oclif/dev-cli": "1.22.2",
|
|
"@semantic-release/changelog": "5.0.0",
|
|
"@semantic-release/exec": "5.0.0",
|
|
"@semantic-release/git": "9.0.0",
|
|
"@types/jest": "25.1.3",
|
|
"@types/node": "10.17.16",
|
|
"@types/nodegit": "0.26.1",
|
|
"@types/prompts": "2.0.3",
|
|
"babel-jest": "25.1.0",
|
|
"codecov": "3.6.5",
|
|
"eslint": "6.8.0",
|
|
"eslint-config-oclif": "3.1.0",
|
|
"eslint-config-oclif-typescript": "0.1.0",
|
|
"eslint-config-prettier": "6.10.0",
|
|
"eslint-plugin-prettier": "3.1.2",
|
|
"globby": "11.0.0",
|
|
"husky": "4.2.3",
|
|
"jest": "25.1.0",
|
|
"prettier": "1.19.1",
|
|
"pretty-quick": "2.0.1",
|
|
"semantic-release": "17.0.4",
|
|
"semantic-release-gitmoji": "1.3.3",
|
|
"strip-ansi": "6.0.0",
|
|
"ts-jest": "25.2.1",
|
|
"ts-node": "8.6.2",
|
|
"typescript": "3.8.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/lib",
|
|
"/npm-shrinkwrap.json",
|
|
"/oclif.manifest.json"
|
|
],
|
|
"homepage": "https://github.com/beaussan/nbx",
|
|
"keywords": [
|
|
"oclif"
|
|
],
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"oclif": {
|
|
"commands": "./lib/commands",
|
|
"bin": "nbx",
|
|
"plugins": [
|
|
"@oclif/plugin-help",
|
|
"@oclif/errors",
|
|
"@oclif/plugin-warn-if-update-available",
|
|
"@oclif/plugin-not-found"
|
|
],
|
|
"topics": {
|
|
"add": {
|
|
"description": "install library to projects"
|
|
}
|
|
}
|
|
},
|
|
"repository": "https://github.com/beaussan/nbx",
|
|
"scripts": {
|
|
"postpack": "rm -f oclif.manifest.json",
|
|
"posttest": "eslint . --ext .ts --config .eslintrc",
|
|
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"update-readme": "oclif-dev readme",
|
|
"format:write": "prettier --write \"**/*.{js,vue,json,ts,tsx,md,yml,html}\"",
|
|
"format:check": "prettier --list-different \"**/*.{js,vue,json,ts,tsx,md,yml,html}\"",
|
|
"release": "semantic-release"
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "pretty-quick --staged"
|
|
}
|
|
}
|
|
}
|