-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 3.57 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "swarm-app",
"main": "src/index.js",
"bin": "src/index.js",
"scripts": {
"build": "tsc",
"fix": "eslint . --fix && tsc",
"test": "jest --coverage"
},
"dependencies": {
"ajv": "8.x",
"dockerode": "4.x",
"jest-diff": "29.x",
"js-yaml": "4.x",
"just-extend": "6.x",
"source-map-support": "0.5.x",
"traverse": "0.6.x",
"yargs": "17.x"
},
"devDependencies": {
"@jest/globals": "29.x",
"@types/dockerode": "3.x",
"@types/js-yaml": "4.x",
"@types/node": "20.x",
"@types/source-map-support": "0.5.x",
"@types/traverse": "0.6.x",
"@typescript-eslint/eslint-plugin": "7.x",
"@typescript-eslint/parser": "7.x",
"eslint": "8.x",
"jest": "29.x",
"ts-jest": "29.x",
"typescript": "5.x"
},
"engines": {
"node": ">=18"
},
"eslintConfig": {
"env": {
"es2022": true,
"node": true
},
"ignorePatterns": [
"*.js"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"rules": {
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/quotes": "error",
"@typescript-eslint/object-curly-spacing": "error",
"@typescript-eslint/space-before-function-paren": "error",
"@typescript-eslint/member-delimiter-style": "error",
"@typescript-eslint/semi": "error",
"@typescript-eslint/prefer-optional-chain": "error",
"@typescript-eslint/no-extra-parens": "error",
"@typescript-eslint/explicit-member-accessibility": "error",
"@typescript-eslint/comma-dangle": [
"error",
"always-multiline"
],
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/require-await": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/indent": [
"error",
4
],
"@typescript-eslint/no-unsafe-call": "error",
"@typescript-eslint/no-unsafe-member-access": "error",
"@typescript-eslint/no-unsafe-argument": "error",
"@typescript-eslint/space-before-blocks": "error",
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/func-call-spacing": "error",
"@typescript-eslint/comma-spacing": "error",
"@typescript-eslint/space-infix-ops": "error",
"@typescript-eslint/no-misused-promises": [
"error",
{
"checksVoidReturn": false
}
],
"@typescript-eslint/promise-function-async": "error",
"keyword-spacing": "error",
"space-in-parens": "error",
"no-trailing-spaces": "error",
"no-multi-spaces": "error",
"arrow-spacing": "error",
"key-spacing": "error",
"eol-last": "error"
}
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/*.test.ts"
],
"coverageReporters": [
"text-summary",
"json-summary",
"lcov"
],
"collectCoverageFrom": [
"**/*.js",
"!src/index.js",
"!tests/**.*.js",
"!**/node_modules/**",
"!**/coverage/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/firecow/swarm-app.git"
},
"author": "Mads Jon Nielsen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/firecow/swarm-app/issues"
},
"homepage": "https://github.com/firecow/swarm-app#readme",
"keywords": [
"docker",
"stack",
"diff",
"deploy",
"wait",
"swarm",
"validate"
]
}