Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dicomweb-client

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dicomweb-client - npm Package Compare versions

Comparing version 0.0.4 to 0.1.0

.README.md.un~

6

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc