generated from JS-DevTools/template-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
87 lines (87 loc) · 2.45 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
83
84
85
86
87
{
"name": "@jsdevtools/npm-publish",
"description": "Fast, easy publishing to NPM",
"version": "3.1.1",
"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"
},
"type": "commonjs",
"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 format && 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|yaml)\""
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@types/command-line-args": "^5.2.1",
"@types/node": "^22.1.0",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-istanbul": "^2.0.5",
"concurrently": "^8.2.1",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.0",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-unicorn": "^55.0.0",
"prettier": "^3.0.3",
"prettier-plugin-jsdoc": "^1.1.1",
"rimraf": "^5.0.9",
"typescript": "^5.2.2",
"vitest": "^2.0.5",
"vitest-when": "^0.4.0"
},
"dependencies": {
"@types/semver": "^7.5.2",
"command-line-args": "6.0.0",
"semver": "7.6.2",
"tar": "7.4.0",
"validate-npm-package-name": "^5.0.1"
}
}