Add metadata to symbolicate package.

Summary: This will allow publishing the package to npm.

Reviewed By: davidaurelio

Differential Revision: D14083973

fbshipit-source-id: b5f68b87b82a3b6bc644727de403bd449ec17239
This commit is contained in:
Christoph Nakazawa
2019-02-15 07:17:27 -08:00
committed by Facebook Github Bot
parent 3d83540973
commit d27a4f9166
2 changed files with 18 additions and 1 deletions

View File

@@ -1,6 +1,22 @@
{
"name": "react-native-symbolicate",
"version": "0.0.1",
"version": "0.0.2",
"description": "A tool to find the source location from JS bundles and stack traces.",
"license": "MIT",
"main": "./symbolicate.js",
"bin": "./symbolicate.js",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
},
"engines": {
"node": ">=8.3"
},
"files": [
"BUCK",
"symbolicate.js",
"Symbolication.js"
],
"dependencies": {
"source-map": "^0.5.6",
"through2": "^2.0.1"

1
packages/react-native-symbolicate/symbolicate.js vendored Normal file → Executable file
View File

@@ -1,3 +1,4 @@
#!/usr/bin/env node
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*