Skip to content

Commit

Permalink
Other: Updated package.json of micro modules to reference types, see #…
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Dec 30, 2016
1 parent cec253f commit f625eb8
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 20 deletions.
6 changes: 4 additions & 2 deletions src/util/aspromise/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/aspromise",
"description": "Returns a promise from a node-style callback function.",
"version": "1.0.4",
"version": "1.0.5",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/base64/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/base64",
"description": "A minimal base64 implementation for number arrays.",
"version": "1.0.4",
"version": "1.0.5",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/codegen/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/codegen",
"description": "A closure for generating functions programmatically.",
"version": "1.0.3",
"version": "1.0.4",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/eventemitter/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/eventemitter",
"description": "A minimal event emitter.",
"version": "1.0.4",
"version": "1.0.5",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/extend/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/extend",
"description": "Provides minimal drop-in inheritance for classes.",
"version": "1.0.1",
"version": "1.0.2",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/fetch/package.json
@@ -1,7 +1,7 @@
{
"name": "@protobufjs/fetch",
"description": "Fetches the contents of a file accross node and browsers.",
"version": "1.0.3",
"version": "1.0.4",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
Expand All @@ -11,5 +11,7 @@
"@protobufjs/aspromise": "^1.0.4",
"@protobufjs/inquire": "^1.0.1"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/inquire/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/inquire",
"description": "Requires a module only if available and hides the require call from bundlers.",
"version": "1.0.1",
"version": "1.0.2",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/path/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/path",
"description": "A minimal path module to resolve Unix, Windows and URL paths alike.",
"version": "1.0.1",
"version": "1.0.2",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/pool/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/pool",
"description": "A general purpose buffer pool.",
"version": "1.0.4",
"version": "1.0.5",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}
6 changes: 4 additions & 2 deletions src/util/utf8/package.json
@@ -1,11 +1,13 @@
{
"name": "@protobufjs/utf8",
"description": "A minimal UTF8 implementation for number arrays.",
"version": "1.0.5",
"version": "1.0.6",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/protobuf.js.git"
},
"license": "BSD-3-Clause"
"license": "BSD-3-Clause",
"main": "index.js",
"types": "index.d.ts"
}

0 comments on commit f625eb8

Please sign in to comment.