-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
32 lines (32 loc) · 952 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "create-issue-from-file",
"version": "2.0.0",
"description": "An action to create an issue using content from a file",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "ncc build src/index.js -o dist",
"vendor-deps": "pip download -r src/ciff/requirements.txt --no-binary=:all: -d dist/vendor",
"package": "npm run build && npm run vendor-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-evans/create-issue-from-file.git"
},
"keywords": [],
"author": "Peter Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/peter-evans/create-issue-from-file/issues"
},
"homepage": "https://github.com/peter-evans/create-issue-from-file",
"dependencies": {
"@actions/core": "^1.1.1",
"@actions/exec": "^1.0.1",
"@actions/tool-cache": "^1.1.2",
"is-docker": "^2.0.0"
},
"devDependencies": {
"@zeit/ncc": "0.22.1"
}
}