-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 972 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 972 Bytes
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
{
"name": "queuebernetes",
"description": "Long running job queue for Kubernetes",
"version": "0.4.2",
"author": "Garrick Meeker",
"main": "index.js",
"license": "MIT",
"private": "false",
"repository": {
"type": "git",
"url": "git://github.com/gmeeker/queuebernetes.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"lerna": "^5.5.4"
},
"engines": {
"node": ">=8"
},
"prettier": {
"useTabs": false,
"bracketSpacing": true,
"tabWidth": 1,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"jsxBracketSameLine": false,
"parser": "babylon",
"semi": true
},
"tags": [
"kubernetes",
"queue"
]
}