Skip to content

Commit a20a866

Browse files
committed
style: Rename to Typescript Module Template
Signed-off-by: Nicholas Cronquist <[email protected]>
1 parent 460c878 commit a20a866

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
# Node Module Template
1+
# Typescript Module Template
22

3-
This is a template project for creating other Node.js modules and publishing
3+
This is a template project for creating other Typescript modules and publishing
44
them to NPM.
55

6+
Template includes:
7+
8+
- Linting / Formatting with Eslint and Prettier
9+
- Test setup with Mocha / Chai
10+
- Code coverage report with Istanbul
11+
- CI/CD with GitHub Actions
12+
613

714
## Installation
815

916
```sh
10-
npm install --save-prod --save-exact node-module-template
17+
npm install --save-prod --save-exact typescript-module-template
1118
```
1219

1320

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "@ncronquist/node-module-template",
2+
"name": "typescript-module-template",
33
"version": "0.0.1",
4-
"description": "An example template for starting a new Node.js module.",
4+
"description": "An example template for starting a new Typescript module.",
55
"repository": {
66
"type" : "git",
7-
"url" : "https://github.com/ncronquist/node-module-template.git"
7+
"url" : "https://github.com/ncronquist/typescript-module-template.git"
88
},
99
"main": "dist/index.js",
1010
"scripts": {

0 commit comments

Comments
 (0)