clangd/.github/actions/pick/node_modules/last-successful-gh-commit/package.json
Kirill Bobyrev 504e724a5b
Install action dependencies directly into node_modules
This allows skipping `npm install` step in the workflow and enables
other projects to use the step without copying/cloning the code.

https://docs.github.com/en/free-pro-team@latest/actions/creating-actions/creating-a-javascript-action#commit-tag-and-push-your-action-to-github
2020-10-02 12:49:40 +02:00

107 lines
2.8 KiB
JSON

{
"_args": [
[
"last-successful-gh-commit@1.0.1",
"/usr/local/google/home/kbobyrev/dev/src/clangd/.github/actions/pick"
]
],
"_from": "last-successful-gh-commit@1.0.1",
"_id": "last-successful-gh-commit@1.0.1",
"_inBundle": false,
"_integrity": "sha1-8Mn8HfEvb764g/5vrcy3W4p5EVo=",
"_location": "/last-successful-gh-commit",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "last-successful-gh-commit@1.0.1",
"name": "last-successful-gh-commit",
"escapedName": "last-successful-gh-commit",
"rawSpec": "1.0.1",
"saveSpec": null,
"fetchSpec": "1.0.1"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/last-successful-gh-commit/-/last-successful-gh-commit-1.0.1.tgz",
"_spec": "1.0.1",
"_where": "/usr/local/google/home/kbobyrev/dev/src/clangd/.github/actions/pick",
"author": {
"name": "Ramiro Silveyra d'Avila"
},
"bugs": {
"url": "https://github.com/ramasilveyra/last-successful-gh-commit/issues"
},
"dependencies": {
"axios": "^0.16.2"
},
"description": "Get last successful GitHub commit",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"codecov": "^2.3.0",
"conventional-changelog-cli": "^1.3.2",
"del-cli": "^1.1.0",
"eslint": "^4.5.0",
"eslint-config-auth0-base": "^13.1.0",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.4",
"moxios": "^0.4.0",
"prettier": "^1.5.3"
},
"engines": {
"node": ">=6.5.0"
},
"files": [
"build"
],
"homepage": "https://github.com/ramasilveyra/last-successful-gh-commit#readme",
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**",
"!**/build/**",
"!**/coverage/**"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
]
},
"keywords": [
"git",
"GitHub",
"commit",
"status"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --single-quote --print-width 100 --write",
"git add"
]
},
"main": "build/index.js",
"name": "last-successful-gh-commit",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ramasilveyra/last-successful-gh-commit.git"
},
"scripts": {
"build": "babel src -d build -s",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "del ./build",
"lint": "eslint .",
"precommit": "lint-staged",
"prepublish": "yarn run clean --silent && yarn run build --silent",
"test": "jest",
"test-ci": "yarn run lint --silent && yarn run test-ci-partial --silent && codecov",
"test-ci-partial": "yarn run test-coverage --silent",
"test-coverage": "yarn run jest --silent -- --coverage"
},
"version": "1.0.1"
}