-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
36 lines (36 loc) · 889 Bytes
/
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
{
"name": "typescript-cli-starter",
"private": true,
"version": "1.0.0",
"description": "A simple and zero-opinion typescript starter template for building cross-platform command line applications.",
"author": "Khalid Zoabi <kzoabi@outlook.com>",
"keywords": [
"typescript",
"cli",
"starter"
],
"license": "MIT",
"main": "./dist/index.js",
"bin": "./dist/cli.js",
"files": [
"dist/**/*",
"!dist/**/*.test.js"
],
"scripts": {
"dev": "ts-node ./src/cli.ts",
"clean": "rimraf ./dist/ ./exec/",
"build": "npm run clean && tsc",
"test": "npm run build && ava --verbose",
"bundle": "npm run build && pkg . --out-dir ./exec/"
},
"devDependencies": {
"ava": "^2.2.0",
"pkg": "^4.4.0",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"commander": "^2.20.0"
}
}