-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.88 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
{
"name": "hello-world",
"version": "0.0.0",
"scripts": {
"build": "pnpm run build --filter={steps} --filter={targets} --filter={common}",
"changeset": "changeset",
"ci:build": "pnpm run ci:build --filter={steps} --filter={targets} --filter={common}",
"ci:publish": "pnpm run ci:publish --filter={steps} --filter={targets} --filter={common}",
"ci:test": "pnpm run ci:test --filter={steps} --filter={targets} --filter={common}",
"ci:version": "pnpm run changeset version && pnpm install --frozen-lockfile=false",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"local:publish": "pnpm run local:publish --filter={steps} --filter={targets} --filter={common}",
"preinstall": "npx only-allow pnpm",
"step-package": "step-package-cli",
"test": "pnpm run test --filter={steps} --filter={targets} --filter={common}"
},
"dependencies": {
"tslib": "2.3.1"
},
"devDependencies": {
"@changesets/cli": "2.18.1",
"@octopusdeploy/eslint-plugin-step-package": "0.1.1",
"@octopusdeploy/step-package-cli": "1.8.1",
"@types/node": "14.18.23",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "3.4.1",
"prettier": "2.4.1",
"typescript": "4.6.4"
},
"description": "A template for creating Octopus Deploy steps and targets using step packages",
"main": "",
"repository": {
"type": "git",
"url": "git+https://github.com/OctopusDeploy/step-package-template.git"
},
"author": "Octopus Deploy",
"license": "MIT",
"bugs": {
"url": "https://github.com/OctopusDeploy/step-package-template/issues"
},
"homepage": "https://github.com/OctopusDeploy/step-package-template#readme"
}