-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "goreleaser-npm-publisher",
"version": "1.0.0",
"description": "Build and publish npm packages based on goreleaser output folder",
"bin": "dist/cli.cjs",
"main": "dist/index.cjs",
"type": "module",
"author": {
"email": "evg.abramovitch@gmail.com",
"name": "Evgeny Abramovich",
"url": "https://github.com/evg4b"
},
"license": "MIT",
"homepage": "https://github.com/evg4b/goreleaser-npm-publisher",
"repository": {
"type": "git",
"url": "git@github.com:evg4b/goreleaser-npm-publisher.git"
},
"keywords": [
"goreleaser",
"npm",
"npm-publish",
"binary",
"cli",
"publish",
"release"
],
"bugs": {
"url": "https://github.com/evg4b/goreleaser-npm-publisher/issues"
},
"readme": "README.md",
"packageManager": "yarn@4.5.0",
"scripts": {
"build": "NODE_ENV=production tsup",
"build:dev": "NODE_ENV=development tsup",
"start": "node dist/index.js",
"run": "tsup && node dist/index.js",
"lint": "eslint .",
"watch": "tsup --watch",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.12",
"@types/node": "20.17.1",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"install": "^0.13.0",
"jest": "^29.7.0",
"jest-esbuild": "^0.3.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tslib": "^2.8.0",
"tsup": "^8.3.4",
"typescript": "~5.6.3",
"typescript-eslint": "^8.11.0"
},
"dependencies": {
"ajv": "^8.17.1",
"glob": "^11.0.0",
"lodash": "^4.17.21",
"picocolors": "^1.1.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16"
}
}