-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.06 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
{
"name": "npm-publish-release",
"description": "GitHub action for publishing a package release to NPM and updating semver",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Daniel Zhang"
},
"contributors": [
"Daniel Zhang (https://github.com/danielhzhang)"
],
"repository": {
"type": "git",
"url": "https://github.com/DanielHZhang/xsurf"
},
"prettier": "@supersede/prettier-config",
"eslintConfig": {
"extends": "@supersede"
},
"files": [
"lib/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "ncc build src/index.ts"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@supersede/eslint-config": "^1.2.0",
"@supersede/prettier-config": "^1.0.1",
"@types/node": "^16.6.0",
"@types/semver": "^7.3.8",
"@vercel/ncc": "^0.29.0",
"eslint": "^7.32.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=6.6.0"
},
"keywords": [
"github-action",
"npm",
"publish",
"version",
"bump"
]
}