-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "cmdy",
"description": "A simple cmd parser framework for node js/ts cli apps.",
"version": "1.4.5",
"main": "dist/index.js",
"author": "majo418",
"license": "MIT",
"private": false,
"keywords": [
"typescript",
"node",
"lib",
"cli",
"cmd",
"arg",
"command"
],
"repository": {
"url": "[email protected]:majo418/cmdy.git",
"type": "git"
},
"scripts": {
"tsc": "tsc -p tsconfig.json",
"start": "ts-node src/index.ts",
"exec": "node dist/index.js",
"test": "mocha --require ts-node/register src/test/**/*.test.ts",
"build": "npm run tsc",
"start:watch": "nodemon -w ./src -x \"npm run start\" --ext *.ts",
"build:watch": "nodemon -w ./src -x \"npm run build\" --ext *.ts",
"test:watch": "nodemon -w ./src -x \"npm run test\" --ext *.ts",
"exec:watch": "nodemon -w ./dist -x \"npm run exec\"",
"dev": "npm run start:watch"
},
"devDependencies": {
"@types/chai": "4",
"@types/mocha": "9",
"@types/node": "16",
"chai": "4",
"mocha": "9",
"nodemon": "2",
"ts-node": "10",
"typescript": "4"
}
}