Skip to content

Commit 74356cb

Browse files
Updated project template files with URL Inspector details
1 parent da4b2fc commit 74356cb

File tree

11 files changed

+41
-204
lines changed

11 files changed

+41
-204
lines changed

.mocharc.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22
# https://mochajs.org/#configuring-mocha-nodejs
33
# https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml
44

5-
spec:
6-
# Test fixtures
7-
- test/fixtures/**/*.js
8-
9-
# Test specs
10-
- test/specs/**/*.spec.js
5+
spec: test/specs/**/*.spec.js
116

127
bail: true
138
recursive: true

README.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
1-
Node.js TypeScript Template
2-
===========================
3-
This is a **template repo** for Node.js projects written in TypeScript. This template works for libraries and/or CLIs.
1+
Rehype URL Inspector
2+
==============================
3+
### A [rehype](https://github.com/rehypejs/rehype) plugin to inspect, validate, or rewrite URLs anywhere in an HTML document
4+
5+
[![Cross-Platform Compatibility](https://jsdevtools.org/img/badges/os-badges.svg)](https://travis-ci.com/JS-DevTools/rehype-url-inspector)
6+
[![Build Status](https://api.travis-ci.com/JS-DevTools/rehype-url-inspector.svg?branch=master)](https://travis-ci.com/JS-DevTools/rehype-url-inspector)
7+
8+
[![Coverage Status](https://coveralls.io/repos/github/JS-DevTools/rehype-url-inspector/badge.svg?branch=master)](https://coveralls.io/github/JS-DevTools/rehype-url-inspector)
9+
[![Dependencies](https://david-dm.org/JS-DevTools/rehype-url-inspector.svg)](https://david-dm.org/JS-DevTools/rehype-url-inspector)
10+
11+
[![npm](https://img.shields.io/npm/v/rehype-url-inspector.svg)](https://www.npmjs.com/package/rehype-url-inspector)
12+
[![License](https://img.shields.io/npm/l/rehype-url-inspector.svg)](LICENSE)
13+
14+
415

516

617

README_md

-83
This file was deleted.

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
remote_theme: JS-DevTools/gh-pages-theme
22

3-
title: Friendly Project Name
3+
title: Rehype URL Inspector
44
logo: https://jsdevtools.org/img/logos/logo.png
55

66
author:

package.json

+18-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
11
{
2-
"name": "project-package-name",
3-
"version": "1.0.0-alpha.0",
4-
"description": "This is the project description",
5-
"keywords": [],
2+
"name": "rehype-url-inspector",
3+
"version": "0.0.1",
4+
"description": "A rehype plugin to inspect, validate, or rewrite URLs anywhere in an HTML document",
5+
"keywords": [
6+
"unified",
7+
"rehype",
8+
"plugin",
9+
"rehype-plugin",
10+
"url",
11+
"rewrite",
12+
"validate",
13+
"inspect",
14+
"normalize",
15+
"404",
16+
"broken links"
17+
],
618
"author": {
719
"name": "James Messinger",
820
"url": "https://jamesmessinger.com"
921
},
1022
"license": "MIT",
11-
"homepage": "https://jsdevtools.org/project-package-name",
23+
"homepage": "https://jsdevtools.org/rehype-url-inspector",
1224
"repository": {
1325
"type": "git",
14-
"url": "https://github.com/JS-DevTools/project-package-name.git"
26+
"url": "https://github.com/JS-DevTools/rehype-url-inspector.git"
1527
},
1628
"main": "lib/index.js",
1729
"types": "lib/index.d.js",

src/project-package-name.ts

-17
This file was deleted.

src/settings.ts

-33
This file was deleted.

src/typings/some-dependency/index.d.ts

-4
This file was deleted.

test/fixtures/mocha-hooks.js

-15
This file was deleted.

test/specs/api.spec.js

-36
This file was deleted.

tslint.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,10 @@ extends:
66
- tslint-modular/best-practices
77
- tslint-modular/style
88
- tslint-modular/node
9+
10+
rules:
11+
# Allow whitelisted implicit dependencies
12+
no-implicit-dependencies:
13+
- true
14+
- - unist
15+
- unified

0 commit comments

Comments
 (0)