-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.3 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.3 KB
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
{
"name": "hello-world",
"version": "1.0.0",
"scripts": {
"step-package": "step-package-cli",
"build": "npm run step-package build",
"test": "jest --maxWorkers 4 --testTimeout 60000 --json --testPathIgnorePatterns \"dist\",\"node_modules\" --outputFile=./results.json",
"lint:fix": "eslint steps deployment-targets --ext .ts --fix --no-error-on-unmatched-pattern",
"lint": "eslint steps deployment-targets --ext .ts --no-error-on-unmatched-pattern",
"postinstall": "patch-package"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"projects": [
{
"displayName": "test",
"transform": {
".(ts)": "ts-jest"
},
"testEnvironment": "jsdom",
"testRegex": "__tests__/.*\\.(test|spec)\\.(ts)$",
"moduleDirectories": [
"<rootDir>/src/",
"node_modules"
],
"moduleFileExtensions": [
"ts",
"js"
],
"setupFilesAfterEnv": [
"jest-expect-message",
"jest-extended"
],
"resetMocks": true
}
]
},
"dependencies": {
"@octopusdeploy/step-api": "0.0.7",
"patch-package": "^6.4.7",
"tslib": "^2.3.0"
},
"devDependencies": {
"@azure/ms-rest-js": "^2.3.0",
"@octopusdeploy/step-package-cli": "^0.2.5",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.39",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-expect-message": "^1.0.2",
"jest-extended": "^0.11.5",
"jest-runner-eslint": "^0.10.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"description": "",
"main": "",
"repository": {
"type": "git",
"url": "git+https://github.com/mcasperson/StepPackage-HelloWorld.git"
},
"author": "Octopus Deploy",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcasperson/StepPackage-HelloWorld/issues"
},
"homepage": "https://github.com/mcasperson/StepPackage-HelloWorld#readme"
}