-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.89 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.89 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
{
"name": "@crestron/ch5-utilities",
"version": "2.2.0",
"description": "Crestron CH5 utilities",
"repository": {
"type": "git",
"url": "https://github.com/Crestron/CH5Utilities.git"
},
"private": false,
"main": "build/index.js",
"bin": {
"ch5-utilities": "./build/index.js"
},
"types": "build/@types/index.d.ts",
"scripts": {
"clean": "rimraf build",
"tsc": "tsc --outDir build --declaration --declarationDir build/@types",
"start": "npm run start:archive && npm run start:distribute",
"start:archive": "ts-node src/start.ts archive",
"start:distribute": "ts-node src/start.ts distribute",
"start:js": "npm run build && node build/start.js archive && node build/start.js distribute",
"start:archive:js": "npm run build && node build/start.js archive",
"start:distribute:js": "npm run build && node build/start.js distribute",
"build": "npm run clean && npm run tsc",
"help": "ts-node src/index.ts",
"publish:local": "npm run build && npm unlink && npm link",
"setup:local": "npm install && npm run build && npm link"
},
"keywords": [
"ch5",
"ch5z"
],
"author": "Crestron",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"archiver": "^5.3.0",
"extract-zip": "^2.0.1",
"rimraf": "^3.0.2",
"sha256-file": "^1.0.0",
"ssh2": "^1.5.0",
"ssh2-sftp-client": "^7.1.0"
},
"devDependencies": {
"@types/archiver": "^5.1.1",
"@types/node": "^11.11.5",
"@types/rimraf": "^3.0.2",
"@types/ssh2": "0.5.48",
"@types/ssh2-sftp-client": "7.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"files": [
"build/**/*",
"LICENSE.txt",
"readme.md"
]
}