@libp2p/interface-compliance-tests 3.0.2 → 3.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # @libp2p/interface-compliance-tests <!-- omit in toc -->
2
2
 
3
3
  [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
4
- [![IRC](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)
5
4
  [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
6
5
  [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-interfaces.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-interfaces)
7
6
  [![CI](https://img.shields.io/github/workflow/status/libp2p/js-libp2p-interfaces/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/libp2p/js-libp2p-interfaces/actions/workflows/js-test-and-release.yml)
@@ -12,8 +11,9 @@
12
11
 
13
12
  - [Install](#install)
14
13
  - [Usage](#usage)
14
+ - [API Docs](#api-docs)
15
15
  - [License](#license)
16
- - [Contribution](#contribution)
16
+ - [Contribute](#contribute)
17
17
 
18
18
  ## Install
19
19
 
@@ -25,6 +25,10 @@ $ npm i @libp2p/interface-compliance-tests
25
25
 
26
26
  Each [interface](https://npmjs.org/packages/@libp2p/interfaces) has its documentation on how to use the compliance tests and should be used as the source of truth.
27
27
 
28
+ ## API Docs
29
+
30
+ - <https://libp2p.github.io/js-libp2p-interfaces>
31
+
28
32
  ## License
29
33
 
30
34
  Licensed under either of
@@ -32,6 +36,6 @@ Licensed under either of
32
36
  - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
33
37
  - MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
34
38
 
35
- ## Contribution
39
+ ## Contribute
36
40
 
37
41
  Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
@@ -0,0 +1,3 @@
1
+ (function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.Libp2PInterfaceComplianceTests = factory()}(typeof self !== 'undefined' ? self : this, function () {
2
+ "use strict";var Libp2PInterfaceComplianceTests=(()=>{var t=Object.defineProperty;var a=Object.getOwnPropertyDescriptor;var b=Object.getOwnPropertyNames;var c=Object.prototype.hasOwnProperty;var d=(o,e,x,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let p of b(e))!c.call(o,p)&&p!==x&&t(o,p,{get:()=>e[p],enumerable:!(r=a(e,p))||r.enumerable});return o};var f=o=>d(t({},"__esModule",{value:!0}),o);var g={};return f(g);})();
3
+ return Libp2PInterfaceComplianceTests}));
@@ -0,0 +1,3 @@
1
+ {
2
+ "TestSetup": "https://libp2p.github.io/js-libp2p-interfaces/interfaces/_libp2p_interface_compliance_tests.TestSetup.html"
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/interface-compliance-tests",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
4
4
  "description": "Compliance tests for JS libp2p interfaces",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p-interfaces/tree/master/packages/interface-compliance-tests#readme",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "files": [
41
41
  "src",
42
- "dist/src",
42
+ "dist",
43
43
  "!dist/test",
44
44
  "!**/*.tsbuildinfo"
45
45
  ],
@@ -90,15 +90,15 @@
90
90
  "release": "patch"
91
91
  },
92
92
  {
93
- "type": "chore",
93
+ "type": "docs",
94
94
  "release": "patch"
95
95
  },
96
96
  {
97
- "type": "docs",
97
+ "type": "test",
98
98
  "release": "patch"
99
99
  },
100
100
  {
101
- "type": "test",
101
+ "type": "deps",
102
102
  "release": "patch"
103
103
  },
104
104
  {
@@ -128,7 +128,11 @@
128
128
  },
129
129
  {
130
130
  "type": "docs",
131
- "section": "Trivial Changes"
131
+ "section": "Documentation"
132
+ },
133
+ {
134
+ "type": "deps",
135
+ "section": "Dependencies"
132
136
  },
133
137
  {
134
138
  "type": "test",
@@ -152,6 +156,9 @@
152
156
  "release": "aegir release"
153
157
  },
154
158
  "dependencies": {
155
- "aegir": "^37.4.0"
159
+ "aegir": "^37.7.3"
160
+ },
161
+ "typedoc": {
162
+ "entryPoint": "./src/index.ts"
156
163
  }
157
164
  }