create-pull-request/package.json

33 lines
955 B
JSON
Raw Normal View History

2019-11-09 09:24:47 +01:00
{
"name": "create-pull-request",
2019-12-29 06:22:44 +01:00
"version": "2.0.0",
2019-11-09 09:24:47 +01:00
"description": "Creates a pull request for changes to your repository in the actions workspace",
"main": "index.js",
"scripts": {
2020-01-23 08:59:17 +01:00
"clean": "rm -rf dist",
"build": "ncc build index.js -o dist",
"vendor-deps": "pip download -r src/requirements.txt --no-binary=:all: -d dist/vendor",
"package": "npm run build && npm run vendor-deps"
2019-11-09 09:24:47 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-evans/create-pull-request.git"
},
"keywords": [],
"author": "Peter Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/peter-evans/create-pull-request/issues"
},
"homepage": "https://github.com/peter-evans/create-pull-request",
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/exec": "^1.0.1",
"@actions/tool-cache": "^1.1.2",
"is-docker": "^2.0.0"
2019-11-09 09:24:47 +01:00
},
"devDependencies": {
2020-02-12 17:54:11 +01:00
"@zeit/ncc": "0.21.1"
2019-11-09 09:24:47 +01:00
}
}