forked from actions/upload-release-asset
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.36 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "upload-release-asset",
"version": "1.1.0",
"private": true,
"description": "Upload a release asset to an existing GitHub Release",
"main": "dist/index.js",
"scripts": {
"lint": "eslint 'src/**.js' 'tests/**.js' --fix",
"test": "eslint 'src/**.js' 'tests/**.js' && jest --coverage",
"build": "ncc build src/main.js",
"precommit": "npm run build && git add dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/upload-release-asset"
},
"keywords": [
"actions",
"node"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "1.0.0",
"@actions/github": "1.0.1",
"@actions/glob": "0.3.0",
"mime-types": "2.1.35"
},
"devDependencies": {
"@zeit/ncc": "^0.20.4",
"eslint": "5.16.0",
"eslint-config-prettier": "3.6.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "2.7.0",
"eslint-plugin-react": "7.14.3",
"jest": "28.1.0",
"mock-fs": "^5.1.2",
"prettier": "1.18.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/upload-release-asset.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}