You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

trap-it-browser

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

trap-it-browser - npm Package Compare versions

Comparing version

to
0.0.3

rollup.config.js

28

package.json
{
"name": "trap-it-browser",
"version": "0.0.1",
"version": "0.0.3",
"description": "Log unhandled errors in the browser",

@@ -8,3 +8,27 @@ "main": "index.js",

"author": "Maurice de Beijer <maurice.de.beijer@gmail.com>",
"license": "MIT"
"license": "MIT",
"scripts": {
"start": "rollup --config",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.5.0",
"rollup": "^0.65.0",
"rollup-plugin-typescript2": "^0.16.1",
"ts-jest": "^23.1.4",
"typescript": "^3.0.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/?(*.)+(spec|test).ts?(x)"
]
}
}