dicomweb-client
Advanced tools
Comparing version 0.0.4 to 0.1.0
{ | ||
"name": "dicomweb-client", | ||
"version": "0.0.4", | ||
"version": "0.1.0", | ||
"description": "Implementation of DICOMweb client code", | ||
@@ -35,3 +35,5 @@ "main": "build/dicomweb-client.js", | ||
}, | ||
"dependencies": {} | ||
"dependencies": { | ||
"npm": "^6.4.1" | ||
} | ||
} |
@@ -40,2 +40,6 @@ [![Build Status](https://travis-ci.com/dcmjs-org/dicomweb-client.svg?branch=master)](https://travis-ci.com/dcmjs-org/dicomweb-client) | ||
```html | ||
<script type="text/javascript" src="https://unpkg.com/dicomweb-client"></script> | ||
``` | ||
```js | ||
@@ -49,2 +53,12 @@ const url = 'http://localhost:8080/dicomweb'; | ||
## For maintainers | ||
Publish a new minor version | ||
```bash | ||
npm version minor | ||
npm publish | ||
git push --tags | ||
``` | ||
## Support | ||
@@ -51,0 +65,0 @@ |
@@ -15,3 +15,3 @@ const chai = require('chai'); | ||
it('should find one study', function() { | ||
it('should find zero studies', function() { | ||
return dwc.searchForStudies().then(studies => { | ||
@@ -22,2 +22,10 @@ chai.expect(studies).to.have.length(0); | ||
// TODO: add the stow part | ||
it('should find one study', function() { | ||
return dwc.searchForStudies().then(studies => { | ||
chai.expect(studies).to.have.length(1); | ||
}); | ||
}); | ||
}); |
Sorry, the diff of this file is not supported yet
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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
18
1099
73
61329
1
+ Addednpm@^6.4.1
+ Addednpm@6.14.18(transitive)