1
mirror of https://github.com/jakejarvis/jakejarvis.git synced 2025-04-26 06:35:23 -04:00
profile/cli/package.json
dependabot[bot] 7418fde9f7 Bump @babel/cli from 7.14.8 to 7.15.4 in /cli
Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.14.8 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-cli)

---
updated-dependencies:
- dependency-name: "@babel/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-09-03 20:33:17 -04:00

92 lines
2.0 KiB
JSON

{
"name": "@jakejarvis/cli",
"version": "1.13.337",
"description": "The Jake Jarvis CLI",
"license": "MIT",
"homepage": "https://jarv.is/cli/",
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://jarv.is/"
},
"repository": {
"type": "git",
"url": "https://github.com/jakejarvis/jakejarvis.git",
"directory": "cli"
},
"keywords": [
"cli",
"jakejarvis",
"jarvis",
"portfolio",
"useless"
],
"engines": {
"node": "^12 || ^14 || >=16"
},
"files": [
"dist/index.js"
],
"bin": {
"jakejarvis": "./dist/index.js"
},
"scripts": {
"clean": "rimraf dist",
"babel": "babel index.js -o dist/unbundled.js",
"ncc": "ncc build dist/unbundled.js -m -o dist",
"build": "run-s clean babel ncc",
"run": "yarn build && node dist/index.js",
"lint": "eslint .",
"prepublishOnly": "run-s lint build"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@jakejarvis/eslint-config": "*",
"@vercel/ncc": "^0.30.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"ink": "^3.0.9",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.0",
"npm-run-all": "^4.1.5",
"open": "^8.2.1",
"react": "^16.x",
"rimraf": "^3.0.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"eslintConfig": {
"extends": [
"@jakejarvis/eslint-config",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"settings": {
"react": {
"version": "detect"
}
},
"ignorePatterns": [
"dist/**"
]
}
}