forked from JS-DevTools/npm-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@jsdevtools/npm-publish",
"description": "Fast, easy publishing to NPM",
"version": "2.0.0",
"keywords": [
"github-action",
"npm",
"publish",
"version",
"bump"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://jstools.dev/npm-publish",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/npm-publish.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"npm-publish": "bin/npm-publish.js"
},
"files": [
"bin",
"lib",
"src",
"!__tests__"
],
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run coverage",
"clean": "rimraf coverage lib dist e2e/fixture *.tgz",
"lint": "npm run _eslint && npm run _prettier -- --check",
"format": "npm run _eslint -- --fix && npm run _prettier -- --write",
"build": "concurrently -g npm:build:*",
"build:dist": "esbuild src/action/main.ts --bundle --sourcemap --outdir=dist --platform=node --target=node16",
"build:lib": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"_eslint": "eslint \"**/*.@(js|ts)\"",
"_prettier": "prettier \"**/*.@(js|ts|json|md|yml)\""
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@types/command-line-args": "^5.0.0",
"@types/node": "^18.15.11",
"@types/tar": "^6.1.4",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitest/coverage-istanbul": "^0.30.1",
"concurrently": "^8.0.1",
"esbuild": "0.17.17",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.27.5-1",
"eslint-plugin-jsdoc": "^43.0.6",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^46.0.0",
"prettier": "^2.8.7",
"prettier-plugin-jsdoc": "^0.4.2",
"rimraf": "^5.0.0",
"testdouble": "^3.17.2",
"testdouble-vitest": "^0.1.2",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"dependencies": {
"@types/semver": "^7.3.13",
"command-line-args": "^5.1.1",
"semver": "^7.5.0",
"tar": "^6.1.13"
}
}