-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
{
"name": "@octopusdeploy/util-actions",
"version": "0.0.1",
"description": "A set of utility actions for use in GitHub actions workflows",
"main": "index.js",
"scripts": {
"build": "pnpm --filter={packages/*} run build",
"changeset": "changeset",
"ci:version": "pnpm run changeset version && pnpm install --frozen-lockfile=false",
"ci:checkdist": "node ./packages/shared-action-utils/dist/checkActionDistributable.js",
"ci:publish": "node ./packages/shared-action-utils/dist/publish.js",
"lint:fix": "eslint . --fix",
"lint": "eslint . --no-error-on-unmatched-pattern",
"preinstall": "npx only-allow pnpm",
"test": "pnpm --filter={packages/*} run test"
},
"engines": {
"node": "^20.0.0",
"pnpm": "^8.15.9",
"npm": "not-supported.please-use-pnpm-instead"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OctopusDeploy/util-actions.git"
},
"keywords": [
"github",
"actions",
"utility"
],
"author": "Octopus Deploy",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OctopusDeploy/util-actions/issues"
},
"homepage": "https://github.com/OctopusDeploy/util-actions#readme",
"devDependencies": {
"@changesets/cli": "2.22.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.6.2",
"typescript": "4.6.4"
},
"pnpm": {
"overrides": {
"@babel/traverse@<7.23.2": ">=7.23.2",
"semver@<5.7.2": ">=5.7.2",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"ws@>=7.0.0 <7.5.10": ">=7.5.10",
"braces@<3.0.3": ">=3.0.3"
}
}
}