Socket
Socket
Sign inDemoInstall

@sentry/core

Package Overview
Dependencies
Maintainers
9
Versions
515
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/core - npm Package Compare versions

Comparing version 0.3.0 to 0.4.0-0

dist/lib/client.d.ts

9

dist/index.d.ts

@@ -1,5 +0,4 @@

export * from './lib/Sentry';
export * from './lib/Interfaces';
export * from './lib/Adapter';
export { IOptions } from './lib/Options';
export { Client } from './lib/Client';
export { default as DSN } from './lib/dsn';
export { default as Client } from './lib/client';
export * from './lib/sentry';
export * from './lib/interfaces';

@@ -6,6 +6,8 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
__export(require("./lib/Sentry"));
__export(require("./lib/Interfaces"));
var Client_1 = require("./lib/Client");
exports.Client = Client_1.Client;
var dsn_1 = require("./lib/dsn");
exports.DSN = dsn_1.default;
var client_1 = require("./lib/client");
exports.Client = client_1.default;
__export(require("./lib/sentry"));
__export(require("./lib/interfaces"));
//# sourceMappingURL=index.js.map
{
"name": "@sentry/core",
"version": "0.3.0",
"version": "0.4.0-0",
"description": "Sentry core implementation for all JavaScript related SDKs",
"author": "Sentry",
"license": "MIT",
"engines": {
"node": ">=6"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.0.1",
"@types/node": "^9.3.0",
"jest": "^22.0.6",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"ts-jest": "^22.0.1",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.6.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "2.6.2",
"vrsource-tslint-rules": "^5.8.0"
"@types/jest": "*",
"jest": "*",
"npm-run-all": "*",
"prettier": "*",
"rimraf": "*",
"ts-jest": "*",
"tslint": "*",
"typescript": "*"
},
"engines": {
"node": ">=6.9.5",
"npm": ">=3.10.7",
"yarn": ">=1.0.2"
},
"scripts": {
"clean": "rm -rf ./dist",
"dist": "npm run clean && tsc -p tsconfig.json",
"test:browser": "jest --env=jsdom",
"test:node": "jest --env=node",
"test:watch": "jest --watch --notify",
"test": "npm-run-all dist test:browser test:node"
"build": "tsc",
"clean": "rimraf dist coverage",
"lint": "tslint --config ../../tslint.json src/**/*",
"format": "prettier --config ../../.prettierrc.json src/**/* --write",
"test": "jest",
"test:watch": "jest --watch --notify"
},

@@ -44,29 +39,14 @@ "jest": {

},
"mapCoverage": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"dist"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
"ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/__mocks__"
],
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.(jsx?|tsx?)$",
"\\.no-jest\\.(jsx?|tsx?)$"
"testMatch": [
"**/*.test.ts"
]
},
"author": "Sentry",
"license": "MIT"
}
}

@@ -15,3 +15,4 @@ <p align="center">

This package is meant to be used with other SDK Packages like Browser, Cordova, React Native.
It is the public facing API and streamlines all JavaScript related SDKs.
This package is meant to be used with other SDK Packages like Browser, Cordova,
React Native. It is the public facing API and streamlines all JavaScript related
SDKs.

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