-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "ts-cli-template",
"version": "0.0.1",
"description": "TypeScript based CLI template",
"main": "dist/index.js",
"bin": {
"ts-cli": "dist/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"dev": "ts-node src/index.ts",
"create": "rm -rf ./dist && npm run build && npm run test",
"build": "tsc -p ./tsconfig.build.json",
"test": "sudo npm i -g && ts-cli",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/K-FOSS/TS-CLI-Template.git"
},
"keywords": [
"TypeScript",
"CLI",
"KristianFJones"
],
"author": "Kristian Jones <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/K-FOSS/TS-CLI-Template/issues"
},
"homepage": "https://github.com/K-FOSS/TS-CLI-Template#readme",
"devDependencies": {
"@types/node": "^12.12.17",
"nodemon": "^2.0.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"dependencies": {
"commander": "^4.0.1",
"conf": "^6.2.0"
}
}