mirror of
https://gitea.com/actions/setup-maven.git
synced 2025-11-08 02:46:20 +08:00
Update dependencies
This commit is contained in:
188
node_modules/cosmiconfig/package.json
generated
vendored
188
node_modules/cosmiconfig/package.json
generated
vendored
@@ -1,62 +1,93 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"cosmiconfig@5.2.1",
|
||||
"/home/stCarolas/Coding/projects/setup-maven"
|
||||
]
|
||||
"name": "cosmiconfig",
|
||||
"version": "5.2.1",
|
||||
"description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "cosmiconfig@5.2.1",
|
||||
"_id": "cosmiconfig@5.2.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==",
|
||||
"_location": "/cosmiconfig",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "cosmiconfig@5.2.1",
|
||||
"name": "cosmiconfig",
|
||||
"escapedName": "cosmiconfig",
|
||||
"rawSpec": "5.2.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "5.2.1"
|
||||
"scripts": {
|
||||
"precommit": "lint-staged && jest && flow check",
|
||||
"lint:md-partial": "remark -u remark-preset-davidtheclark --frail --quiet --no-stdout --output --",
|
||||
"lint:md": "npm run lint:md-partial -- *.md",
|
||||
"lint:fix": "eslint . --fix",
|
||||
"lint": "eslint . && npm run lint:md",
|
||||
"format": "prettier --write \"{src/*.js,test/*.js}\"",
|
||||
"pretest": "npm run lint && flow check",
|
||||
"test": "jest --coverage",
|
||||
"test:watch": "jest --watch",
|
||||
"coverage": "jest --coverage --coverageReporters=html --coverageReporters=text",
|
||||
"build": "flow-remove-types src --out-dir dist --quiet",
|
||||
"prepublishOnly": "npm run build"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/husky"
|
||||
"lint-staged": {
|
||||
"*.js": [
|
||||
"eslint --fix",
|
||||
"prettier --write",
|
||||
"git add"
|
||||
],
|
||||
"*.md": [
|
||||
"npm run lint:md-partial",
|
||||
"git add"
|
||||
]
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/davidtheclark/cosmiconfig.git"
|
||||
},
|
||||
"keywords": [
|
||||
"load",
|
||||
"configuration",
|
||||
"config"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz",
|
||||
"_spec": "5.2.1",
|
||||
"_where": "/home/stCarolas/Coding/projects/setup-maven",
|
||||
"author": {
|
||||
"name": "David Clark",
|
||||
"email": "david.dave.clark@gmail.com"
|
||||
"author": "David Clark <david.dave.clark@gmail.com>",
|
||||
"contributors": [
|
||||
"Bogdan Chadkin <trysound@yandex.ru>",
|
||||
"Suhas Karanth <sudo.suhas@gmail.com>"
|
||||
],
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/davidtheclark/cosmiconfig/issues"
|
||||
},
|
||||
"homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
|
||||
"prettier": {
|
||||
"trailingComma": "es5",
|
||||
"singleQuote": true,
|
||||
"printWidth": 80,
|
||||
"tabWidth": 2
|
||||
},
|
||||
"jest": {
|
||||
"testEnvironment": "node",
|
||||
"collectCoverageFrom": [
|
||||
"src/*.js"
|
||||
],
|
||||
"coverageReporters": [
|
||||
"text",
|
||||
"html",
|
||||
"lcov"
|
||||
],
|
||||
"coverageThreshold": {
|
||||
"global": {
|
||||
"branches": 100,
|
||||
"functions": 100,
|
||||
"lines": 100,
|
||||
"statements": 100
|
||||
}
|
||||
},
|
||||
"resetModules": true,
|
||||
"resetMocks": true
|
||||
},
|
||||
"babel": {
|
||||
"plugins": [
|
||||
"transform-flow-strip-types"
|
||||
]
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/davidtheclark/cosmiconfig/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Bogdan Chadkin",
|
||||
"email": "trysound@yandex.ru"
|
||||
},
|
||||
{
|
||||
"name": "Suhas Karanth",
|
||||
"email": "sudo.suhas@gmail.com"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"import-fresh": "^2.0.0",
|
||||
"is-directory": "^0.3.1",
|
||||
"js-yaml": "^3.13.1",
|
||||
"parse-json": "^4.0.0"
|
||||
},
|
||||
"description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
|
||||
"devDependencies": {
|
||||
"babel-eslint": "^8.0.3",
|
||||
"babel-plugin-transform-flow-strip-types": "^6.22.0",
|
||||
@@ -79,74 +110,5 @@
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
|
||||
"jest": {
|
||||
"testEnvironment": "node",
|
||||
"collectCoverageFrom": [
|
||||
"src/*.js"
|
||||
],
|
||||
"coverageReporters": [
|
||||
"text",
|
||||
"html",
|
||||
"lcov"
|
||||
],
|
||||
"coverageThreshold": {
|
||||
"global": {
|
||||
"branches": 100,
|
||||
"functions": 100,
|
||||
"lines": 100,
|
||||
"statements": 100
|
||||
}
|
||||
},
|
||||
"resetModules": true,
|
||||
"resetMocks": true
|
||||
},
|
||||
"keywords": [
|
||||
"load",
|
||||
"configuration",
|
||||
"config"
|
||||
],
|
||||
"license": "MIT",
|
||||
"lint-staged": {
|
||||
"*.js": [
|
||||
"eslint --fix",
|
||||
"prettier --write",
|
||||
"git add"
|
||||
],
|
||||
"*.md": [
|
||||
"npm run lint:md-partial",
|
||||
"git add"
|
||||
]
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"name": "cosmiconfig",
|
||||
"prettier": {
|
||||
"trailingComma": "es5",
|
||||
"singleQuote": true,
|
||||
"printWidth": 80,
|
||||
"tabWidth": 2
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/davidtheclark/cosmiconfig.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "flow-remove-types src --out-dir dist --quiet",
|
||||
"coverage": "jest --coverage --coverageReporters=html --coverageReporters=text",
|
||||
"format": "prettier --write \"{src/*.js,test/*.js}\"",
|
||||
"lint": "eslint . && npm run lint:md",
|
||||
"lint:fix": "eslint . --fix",
|
||||
"lint:md": "npm run lint:md-partial -- *.md",
|
||||
"lint:md-partial": "remark -u remark-preset-davidtheclark --frail --quiet --no-stdout --output --",
|
||||
"precommit": "lint-staged && jest && flow check",
|
||||
"prepublishOnly": "npm run build",
|
||||
"pretest": "npm run lint && flow check",
|
||||
"test": "jest --coverage",
|
||||
"test:watch": "jest --watch"
|
||||
},
|
||||
"version": "5.2.1"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user