mirror of
https://github.com/jakejarvis/jakejarvis.git
synced 2025-04-26 07:45:24 -04:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.15.0 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-preset-env) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
92 lines
2.0 KiB
JSON
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.4",
|
|
"@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/**"
|
|
]
|
|
}
|
|
}
|