-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.18 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": "update-node-versions",
"version": "2.2.0",
"repository": "github:hongaar/update-node-versions",
"license": "MIT",
"author": "Joram van den Boezem <joram@vandenboezem.nl>",
"type": "module",
"main": "dist/index.cjs",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "yarn clean && yarn build:typecheck && yarn build:bundle",
"build:bundle": "esbuild --bundle --platform=node --format=cjs --target=es2020 --outfile=dist/index.cjs src/index.ts",
"build:typecheck": "tsc --noEmit",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"doctoc": "doctoc README.md",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"prepublish": "yarn build",
"release": "semantic-release",
"test": "xv --loader=ts-node/esm test",
"todos": "leasot --exit-nicely --reporter markdown --ignore \"**/node_modules\" \"**/*.ts\" > TODO.md"
},
"dependencies": {
"@actions/core": "1.10.0",
"@atomist/yaml-updater": "1.0.2",
"date-fns": "2.29.3",
"glob": "10.2.2",
"got": "12.5.3",
"js-yaml": "4.1.0",
"node-version-alias": "3.4.1",
"p-pipe": "4.0.0",
"ramda": "0.28.0",
"semver": "7.3.8"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@types/js-yaml": "4.0.5",
"@types/node": "18.11.15",
"@types/prettier": "2.7.1",
"@types/ramda": "0.28.20",
"@types/semver": "7.3.13",
"doctoc": "2.2.1",
"esbuild": "0.16.5",
"husky": "8.0.2",
"leasot": "13.2.0",
"lint-staged": "13.1.0",
"moker": "0.10.0",
"prettier": "2.8.1",
"semantic-release": "19.0.5",
"semantic-release-yarn": "0.3.0",
"tempy": "3.0.0",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"xv": "2.0.0"
},
"packageManager": "yarn@3.3.0",
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"moker": {
"plugins": [
"prettier",
"husky",
"lint-staged",
"github-actions",
"semantic-release",
"devcontainer",
"doctoc",
"todos",
"typescript",
"esbuild",
"xv"
]
}
}