-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
{
"name": "kubycat",
"version": "1.2.5",
"description": "A small Node.js library for the watching and automated syncing of files into a local or remote Kubernetes cluster..",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"README.md"
],
"bin": {
"kubycat": "dist/cjs/KubycatCli.js"
},
"scripts": {
"build": "npm run clean && npm run tsc",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"clean": "rimraf dist",
"lint": "tslint -c tslint.json",
"test": "ava",
"prepublish": "npm run build"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sheldonjuncker/node-kubycat.git"
},
"keywords": [
"kubycat",
"kubernetes",
"file",
"syncing"
],
"author": "Sheldon Juncker",
"license": "MIT",
"bugs": {
"url": "https://github.com/sheldonjuncker/node-kubycat/issues"
},
"homepage": "https://www.kubycat.info",
"devDependencies": {
"@types/node": "^18.15.3",
"@types/node-notifier": "^8.0.2",
"ava": "^4.2.0",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.6.4"
},
"dependencies": {
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"fs": "^0.0.1-security",
"node-notifier": "^10.0.1",
"yaml": "^2.2.1"
}
}