-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "ts-cli-template",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"bin": {
"tscli": "./dist/index.js"
},
"scripts": {
"build": "rm dist -rf && tsc",
"watch": "nodemon -e ts --exec npm run exec",
"test": "npm run lint && npm run build",
"prepublish": "npm run build",
"exec": "ts-node src/index.ts",
"lint": "eslint src/*",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wallacetm/ts-cli-template.git"
},
"keywords": [],
"author": "Wallace Reetz",
"license": "MIT",
"bugs": {
"url": "https://github.com/wallacetm/ts-cli-template/issues"
},
"homepage": "https://github.com/wallacetm/ts-cli-template#readme",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"files": [
"dist/*"
],
"dependencies": {
"@types/figlet": "^1.2.0",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"figlet": "^1.4.0"
}
}