This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-merge pull request #82 from atomist-skills/github-auto-rebase-skill
Sync package.json Pull request auto merged: * No reviews * 1 successful check
- Loading branch information
Showing
1 changed file
with
40 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,23 @@ | ||
{ | ||
"name": "@atomist/github-auto-rebase-skill", | ||
"homepage": "https://github.com/atomist-skills/github-auto-rebase-skill", | ||
"license": "Apache-2.0", | ||
"author": { | ||
"name": "Atomist", | ||
"email": "[email protected]" | ||
"name": "Atomist, Inc.", | ||
"email": "[email protected]", | ||
"url": "https://atomist.com" | ||
}, | ||
"main": "node_modules/@atomist/skill/lib/function.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"license": "Apache-2.0", | ||
"homepage": "https://github.com/atomist-skills/github-auto-rebase-skill#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/atomist-skills/github-auto-rebase-skill.git" | ||
}, | ||
"dependencies": { | ||
"@atomist/skill": "^0.5.1", | ||
"@atomist/slack-messages": "^1.2.0", | ||
"lodash": "^4.17.20" | ||
}, | ||
"devDependencies": { | ||
"@google-cloud/functions-framework": "^1.7.1", | ||
"@types/lodash": "^4.14.165", | ||
"@typescript-eslint/eslint-plugin": "^4.8.0", | ||
"@typescript-eslint/parser": "^4.8.0", | ||
"eslint": "^7.13.0", | ||
"eslint-config-prettier": "^6.15.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"husky": "^4.3.0", | ||
"lint-staged": "^10.5.1", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.1.2", | ||
"rimraf": "^3.0.2", | ||
"supervisor": "^0.12.0", | ||
"typedoc": "^0.19.2", | ||
"typescript": "^4.0.5" | ||
}, | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"main": "node_modules/@atomist/skill/lib/function.js", | ||
"scripts": { | ||
"atm:lint:eslint": "eslint --fix", | ||
"atm:lint:prettier": "prettier --write", | ||
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test", | ||
"build": "run-s clean compile test lint doc", | ||
"clean": "run-p clean:compile clean:test clean:doc clean:run", | ||
|
@@ -52,21 +33,41 @@ | |
"gql:gen": "atm-skill gql-generate", | ||
"lint": "run-p lint:eslint lint:prettier", | ||
"lint:eslint": "eslint --ext .ts .", | ||
"lint:prettier": "prettier --list-different \"**/*.{graphql,json,markdown,md,yaml,yml}\"", | ||
"lint:fix": "run-p lint:eslint:fix lint:prettier:fix", | ||
"lint:eslint:fix": "npm run lint:eslint -- --fix", | ||
"lint:fix": "run-p lint:eslint:fix lint:prettier:fix", | ||
"lint:prettier": "prettier --list-different \"**/*.{graphql,json,markdown,md,yaml,yml}\"", | ||
"lint:prettier:fix": "prettier --write \"**/*.{graphql,json,markdown,md,yaml,yml}\"", | ||
"start": "functions-framework --target=entryPoint --signature-type=event", | ||
"test": "echo no tests", | ||
"test:one": "echo no tests", | ||
"skill": "run-s compile test skill:generate skill:bundle skill:package", | ||
"skill:generate": "atm-skill generate", | ||
"skill:clean": "atm-skill clean", | ||
"skill:bundle": "atm-skill bundle", | ||
"skill:clean": "atm-skill clean", | ||
"skill:generate": "atm-skill generate", | ||
"skill:package": "atm-skill package", | ||
"skill:register": "atm-skill register", | ||
"atm:lint:prettier": "prettier --write", | ||
"atm:lint:eslint": "eslint --fix" | ||
"start": "functions-framework --target=entryPoint --signature-type=event", | ||
"test": "echo no tests", | ||
"test:one": "echo no tests" | ||
}, | ||
"dependencies": { | ||
"@atomist/skill": "^0.5.1", | ||
"@atomist/slack-messages": "^1.2.0", | ||
"lodash": "^4.17.20" | ||
}, | ||
"devDependencies": { | ||
"@google-cloud/functions-framework": "^1.7.1", | ||
"@types/lodash": "^4.14.165", | ||
"@typescript-eslint/eslint-plugin": "^4.8.0", | ||
"@typescript-eslint/parser": "^4.8.0", | ||
"eslint": "^7.13.0", | ||
"eslint-config-prettier": "^6.15.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"husky": "^4.3.0", | ||
"lint-staged": "^10.5.1", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.1.2", | ||
"rimraf": "^3.0.2", | ||
"supervisor": "^0.12.0", | ||
"typedoc": "^0.19.2", | ||
"typescript": "^4.0.5" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
|