forked from NobleMajo/typenvy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "typenvy",
"description": "A simple cmd parser framework for node js/ts cli apps.",
"version": "1.5.12",
"main": "dist/index.js",
"author": "majo418",
"license": "MIT",
"private": false,
"keywords": [
"typescript",
"node",
"lib",
"arg",
"command"
],
"repository": {
"url": "git@github.com:majo418/typenvy.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": "nodemon -w ./src -x \"npm run build; npm run test; npm run start\" --ext *.ts"
},
"devDependencies": {
"@types/chai": "^4",
"@types/mocha": "^9",
"@types/node": "^16",
"chai": "^4",
"cmdy": "^1",
"mocha": "^9",
"nodemon": "^2",
"ts-node": "^10",
"typescript": "^4"
}
}