-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "@crestron/ch5-utilities-cli",
"version": "2.2.0",
"description": "CH5 Utilities CLI for archiving and distribution",
"repository": {
"type": "git",
"url": "https://github.com/Crestron/CH5Utilities.git"
},
"main": "./build/index.js",
"bin": {
"ch5-cli": "./build/index.js"
},
"types": "build/@types/index.d.ts",
"scripts": {
"build": "npm run clean && npm run tsc",
"ch5-utils": "./build/index.js",
"clean": "rimraf build",
"publish:local": "npm run build && npm unlink && npm link",
"publish:local:watch": "nodemon --watch 'src/**/*.ts' --exec 'npm run publish:local'",
"setup:local": "npm install && npm link @crestron/ch5-utilities && npm run build && npm link",
"start": "ts-node src/index.ts",
"start:js": "node build/index.js",
"start:watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"tsc": "tsc --declaration --declarationDir build/@types"
},
"keywords": [
"ch5",
"ch5z",
"cli"
],
"author": "Crestron",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"@crestron/ch5-utilities": "^2.2.0",
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^8.3.0",
"inquirer": "^8.2.0"
},
"devDependencies": {
"@types/node": "^14.14.35",
"nodemon": "^2.0.6",
"rimraf": "^2.6.3",
"ts-node": "^8.1.0",
"typescript": "^4.2.3",
"typings": "^2.1.1"
},
"files": [
"build/**/*",
"LICENSE.txt",
"readme.md"
]
}