-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "publish-branch-to-npm",
"version": "2.3.3",
"description": "GitHub action created to publish a branch of an npm package repo to npm registry",
"main": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "ncc build index.mjs -o dist --source-map --license licenses.txt",
"lint": "eslint --fix --cache --ext mjs .",
"lint:ci": "eslint --ext mjs .",
"lint:debug": "eslint --print-config index.mjs",
"preversion": "npm run build && git add -A dist",
"test": "vitest",
"test:coverage": "vitest --coverage --watch=false"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^2.1.8",
"@wistia/eslint-config": "^0.38.2",
"vitest": "^2.1.8"
},
"author": "Wistia Engineering",
"license": "MIT",
"keywords": [
"GitHub",
"actions",
"publish",
"branch",
"npm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wistia/publish-branch-to-npm.git"
},
"bugs": {
"url": "https://github.com/wistia/publish-branch-to-npm/issues"
},
"homepage": "https://github.com/wistia/publish-branch-to-npm#readme"
}