Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "interface", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Enforce an interface on classes", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -7,2 +7,8 @@ # Interface-js | ||
### Installation | ||
```bash | ||
npm install --save interface | ||
``` | ||
### Usage | ||
@@ -9,0 +15,0 @@ |
@@ -11,3 +11,3 @@ var expect = require('chai').expect | ||
function generateTestSuite () { | ||
function applyTestSuite () { | ||
it('should not allow an interface to be instantiated', function () { | ||
@@ -99,3 +99,3 @@ try { | ||
generateTestSuite() | ||
applyTestSuite() | ||
}) | ||
@@ -108,3 +108,3 @@ | ||
generateTestSuite() | ||
applyTestSuite() | ||
}) | ||
@@ -117,4 +117,4 @@ | ||
generateTestSuite() | ||
applyTestSuite() | ||
}) | ||
}) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7728
99