Comparing version 4.0.0-typescript-f5ce465a4d5234058c698e16b70aeefd31ed3b2a to 4.0.0-typescript-fbfd1325e7ec1f7bb0e620e5a7514c4e351ff642
@@ -10,3 +10,3 @@ # Change Log | ||
* Don't test on node 4 [Alexis Svinartchouk] | ||
* Replace jsdoc with typedoc [Alexis Svinartchouk] | ||
* Replace jsdoc with typedoc, rename resin -> balena [Alexis Svinartchouk] | ||
* Change licence MIT -> Apache [Alexis Svinartchouk] | ||
@@ -13,0 +13,0 @@ * Add licence in each ts file [Alexis Svinartchouk] |
{ | ||
"name": "blockmap", | ||
"version": "4.0.0-typescript-f5ce465a4d5234058c698e16b70aeefd31ed3b2a", | ||
"version": "4.0.0-typescript-fbfd1325e7ec1f7bb0e620e5a7514c4e351ff642", | ||
"description": "Tizen's block map format", | ||
@@ -33,9 +33,9 @@ "license": "MIT", | ||
}, | ||
"homepage": "https://github.com/resin-io-modules/blockmap", | ||
"homepage": "https://github.com/balena-io-modules/blockmap", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/resin-io-modules/blockmap.git" | ||
"url": "git+https://github.com/balena-io-modules/blockmap.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/resin-io-modules/blockmap/issues" | ||
"url": "https://github.com/balena-io-modules/blockmap/issues" | ||
}, | ||
@@ -48,5 +48,5 @@ "scripts": { | ||
"benchmark": "ts-node benchmark/blockmap.ts", | ||
"doc": "typedoc --theme markdown --mode file --out doc lib/index.ts", | ||
"doc": "typedoc --readme none --theme markdown --mode file --out doc lib/index.ts", | ||
"prepublishOnly": "npm run lint && npm run test && npm run benchmark && npm run build && npm run doc" | ||
} | ||
} |
@@ -5,4 +5,4 @@ # Blockmap | ||
[![npm downloads](https://img.shields.io/npm/dm/blockmap.svg?style=flat-square)](https://npmjs.com/package/blockmap) | ||
[![build status](https://img.shields.io/travis/resin-io-modules/blockmap/master.svg?style=flat-square&label=linux)](https://travis-ci.org/resin-io-modules/blockmap) | ||
[![build status](https://img.shields.io/appveyor/ci/resin-io/blockmap/master.svg?style=flat-square&label=windows)](https://ci.appveyor.com/project/resin-io/blockmap) | ||
[![build status](https://img.shields.io/travis/balena-io-modules/blockmap/master.svg?style=flat-square&label=linux)](https://travis-ci.org/balena-io-modules/blockmap) | ||
[![build status](https://img.shields.io/appveyor/ci/balena-io/blockmap/master.svg?style=flat-square&label=windows)](https://ci.appveyor.com/project/balena-io/blockmap) | ||
@@ -22,3 +22,3 @@ This module implements [Tizen's block map format](https://source.tizen.org/documentation/reference/bmaptool/introduction), | ||
For detailed API documentation, see [`/doc`](https://github.com/resin-io-modules/blockmap/tree/master/doc). | ||
For detailed API documentation, see [`/doc`](https://github.com/balena-io-modules/blockmap/tree/master/doc). | ||
@@ -134,3 +134,3 @@ ```js | ||
```js | ||
const blockMap = BlockMap.parse(fs.readFileSync('/path/to/resin-os.bmap')) | ||
const blockMap = BlockMap.parse(fs.readFileSync('/path/to/balena-os.bmap')) | ||
const blockReadStream = new ReadStream(fileDescriptor, blockMap) | ||
@@ -161,4 +161,4 @@ | ||
```js | ||
const blockMap = BlockMap.parse(fs.readFileSync('/path/to/resin-os.bmap')) | ||
const readStream = fs.createReadStream('/path/to/resin-os.img') | ||
const blockMap = BlockMap.parse(fs.readFileSync('/path/to/balena-os.bmap')) | ||
const readStream = fs.createReadStream('/path/to/balena-os.img') | ||
const filterStream = new FilterStream(blockMap) | ||
@@ -194,3 +194,3 @@ | ||
const blockMap = BlockMap.parse(fs.readFileSync('/path/to/resin-os.bmap')) | ||
const blockMap = BlockMap.parse(fs.readFileSync('/path/to/balena-os.bmap')) | ||
@@ -197,0 +197,0 @@ verify(fileDescriptor, blockMap, function(error) { |
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
118054