Skip to content

Commit fd01aff

Browse files
committed
fix(scaffold): update project scaffold template
1 parent 759bffe commit fd01aff

File tree

17 files changed

+351
-4855
lines changed

17 files changed

+351
-4855
lines changed

.codeclimate.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# http://editorconfig.org
21
root = true
32

43
[*]

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@ahmadnassri/eslint-config"
3+
}

.github/settings.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
_extends: .github
2+
3+
repository:
4+
name: node-har-validator
5+
description: Extremely fast HTTP Archive (HAR) validator using JSON Schema
6+
topics: har,cli,ajv,http,archive,validate,validator
7+
homepage: https://github.com/ahmadnassri/node-har-validator
8+
private: false
9+
has_issues: true
10+
has_wiki: false
11+
has_downloads: false
12+
has_projects: false
13+
default_branch: master
14+
allow_squash_merge: true
15+
allow_merge_commit: false
16+
allow_rebase_merge: true

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.log
2-
/node_modules
32
/.nyc_output
3+
/coverage
4+
/node_modules

.releaserc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@ahmadnassri/semantic-release-config"
3+
}

.remarkrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": [
3+
"@ahmadnassri/remark-config"
4+
]
5+
}

.travis.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

LICENSE

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
Copyright (c) 2015, Ahmad Nassri <[email protected]>
2-
3-
Permission to use, copy, modify, and/or distribute this software for any
4-
purpose with or without fee is hereby granted, provided that the above
5-
copyright notice and this permission notice appear in all copies.
6-
7-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13-
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2018 Ahmad Nassri <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 14 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
1-
# HAR Validator [![version][npm-version]][npm-url] [![License][license-image]][license-url]
1+
# HAR Validator
22

3-
> Extremely fast HTTP Archive ([HAR](https://github.com/ahmadnassri/har-spec/blob/master/versions/1.2.md)) validator using JSON Schema.
3+
[![License][license-image]][license-url] [![version][npm-image]][npm-url] [![Build Status][circle-image]][circle-url]
44

5-
[![Build Status][travis-image]][travis-url]
6-
[![Downloads][npm-downloads]][npm-url]
7-
[![Code Climate][codeclimate-quality]][codeclimate-url]
8-
[![Coverage Status][codeclimate-coverage]][codeclimate-url]
9-
[![Dependency Status][dependencyci-image]][dependencyci-url]
10-
[![Dependencies][david-image]][david-url]
5+
> Extremely fast HTTP Archive ([HAR](https://github.com/ahmadnassri/har-spec/blob/master/versions/1.2.md)) validator using JSON Schema.
116
127
## Install
138

149
```bash
15-
npm install --only=production --save har-validator
10+
npm install har-validator
1611
```
1712

1813
## CLI Usage
@@ -21,34 +16,22 @@ Please refer to [`har-cli`](https://github.com/ahmadnassri/har-cli) for more inf
2116

2217
## API
2318

24-
**Note**: as of [`v2.0.0`](https://github.com/ahmadnassri/har-validator/releases/tag/v2.0.0) this module defaults to Promise based API. *For backward compatibility with `v1.x` an [async/callback API](docs/async.md) is also provided*
19+
**Note**: as of [`v2.0.0`](https://github.com/ahmadnassri/har-validator/releases/tag/v2.0.0) this module defaults to Promise based API. _For backward compatibility with `v1.x` an [async/callback API](docs/async.md) is also provided_
2520

2621
- [async API](docs/async.md)
2722
- [callback API](docs/async.md)
28-
- [Promise API](docs/promise.md) *(default)*
23+
- [Promise API](docs/promise.md) _(default)_
2924

30-
----
31-
> :copyright: [ahmadnassri.com](https://www.ahmadnassri.com/) &nbsp;&middot;&nbsp;
32-
> License: [ISC][license-url] &nbsp;&middot;&nbsp;
33-
> Github: [@ahmadnassri](https://github.com/ahmadnassri) &nbsp;&middot;&nbsp;
25+
---
26+
> Author: [Ahmad Nassri](https://www.ahmadnassri.com/) &bull;
27+
> Github: [@ahmadnassri](https://github.com/ahmadnassri) &bull;
3428
> Twitter: [@ahmadnassri](https://twitter.com/ahmadnassri)
3529
36-
[license-url]: http://choosealicense.com/licenses/isc/
37-
[license-image]: https://img.shields.io/github/license/ahmadnassri/har-validator.svg?style=flat-square
30+
[license-url]: LICENSE
31+
[license-image]: https://img.shields.io/github/license/ahmadnassri/node-har-validator.svg?style=for-the-badge&logo=circleci
3832

39-
[travis-url]: https://travis-ci.org/ahmadnassri/har-validator
40-
[travis-image]: https://img.shields.io/travis/ahmadnassri/har-validator.svg?style=flat-square
33+
[circle-url]: https://circleci.com/gh/ahmadnassri/workflows/har-validator
34+
[circle-image]: https://img.shields.io/circleci/project/github/ahmadnassri/node-har-validator/master.svg?style=for-the-badge&logo=circleci
4135

4236
[npm-url]: https://www.npmjs.com/package/har-validator
43-
[npm-version]: https://img.shields.io/npm/v/har-validator.svg?style=flat-square
44-
[npm-downloads]: https://img.shields.io/npm/dm/har-validator.svg?style=flat-square
45-
46-
[codeclimate-url]: https://codeclimate.com/github/ahmadnassri/har-validator
47-
[codeclimate-quality]: https://img.shields.io/codeclimate/github/ahmadnassri/har-validator.svg?style=flat-square
48-
[codeclimate-coverage]: https://img.shields.io/codeclimate/coverage/github/ahmadnassri/har-validator.svg?style=flat-square
49-
50-
[david-url]: https://david-dm.org/ahmadnassri/har-validator
51-
[david-image]: https://img.shields.io/david/ahmadnassri/har-validator.svg?style=flat-square
52-
53-
[dependencyci-url]: https://dependencyci.com/github/ahmadnassri/har-validator
54-
[dependencyci-image]: https://dependencyci.com/github/ahmadnassri/har-validator/badge?style=flat-square
37+
[npm-image]: https://img.shields.io/npm/v/har-validator.svg?style=for-the-badge&logo=npm

0 commit comments

Comments
 (0)