This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "alfred-kubernetes",
"version": "0.0.0-development",
"description": "Alfred workflow to manage a kubernetes cluster",
"license": "MIT",
"repository": "kennethlynne/alfred-kubernetes",
"release": {
"verifyConditions": "condition-circle"
},
"author": {
"name": "Kenneth Lynne",
"email": "[email protected]",
"url": "kenneth.ly"
},
"engines": {
"node": ">=7"
},
"lint-staged": {
"*.{ts,js,json}": ["prettier --write", "git add"]
},
"scripts": {
"clean": "rimraf *.js",
"prebuild": "npm run clean",
"build": "tsc",
"test": "echo \"No tests configured\"",
"lint-staged": "lint-staged",
"pretest": "npm run lint",
"precommit": "lint-staged",
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup",
"autoformat": "prettier --write '**/*.{j,t}s*'",
"lint": "tslint -c tslint.json \"{**}/*.ts*\"",
"semantic-release": "semantic-release"
},
"files": ["index.js", "icon.png", "info.plist"],
"keywords": ["alfred", "workflow", "alfy"],
"dependencies": {
"@types/shelljs": "^0.7.7",
"alfred-notifier": "^0.2.3",
"alfy": "^0.6.0",
"kubernetes-client": "^3.17.2",
"lint-staged": "^7.0.0",
"shelljs": "^0.8.0",
"tslib": "1.8.0",
"typescript": "2.6.2"
},
"devDependencies": {
"@types/node": "^9.3.0",
"alfy-test": "^0.3.0",
"condition-circle": "^2.0.1",
"husky": "^0.14.3",
"rimraf": "^2.6.2",
"semantic-release": "^11.0.2",
"tslint": "^5.9.1"
}
}