UNPKG

2.7 kBJSONView Raw
1{
2 "name": "@sentry/browser",
3 "version": "4.2.0",
4 "description": "Offical Sentry SDK for browsers",
5 "repository": "git://github.com/getsentry/raven-js.git",
6 "homepage": "https://github.com/getsentry/raven-js/tree/master/packages/browser",
7 "author": "Sentry",
8 "license": "BSD-3-Clause",
9 "engines": {
10 "node": ">=6"
11 },
12 "main": "dist/index.js",
13 "types": "dist/index.d.ts",
14 "publishConfig": {
15 "access": "public"
16 },
17 "dependencies": {
18 "@sentry/core": "4.2.0",
19 "@sentry/types": "4.2.0",
20 "@sentry/utils": "4.2.0"
21 },
22 "devDependencies": {
23 "@types/md5": "2.1.32",
24 "chai": "^4.1.2",
25 "karma": "^2.0.2",
26 "karma-chai": "^0.1.0",
27 "karma-chrome-launcher": "^2.2.0",
28 "karma-failed-reporter": "0.0.3",
29 "karma-firefox-launcher": "^1.1.0",
30 "karma-mocha": "^1.3.0",
31 "karma-mocha-reporter": "^2.2.5",
32 "karma-rollup-preprocessor": "^6.0.0",
33 "karma-sauce-launcher": "^1.2.0",
34 "karma-typescript": "^3.0.12",
35 "karma-typescript-es6-transform": "^1.0.4",
36 "npm-run-all": "^4.1.2",
37 "prettier": "^1.14.0",
38 "prettier-check": "^2.0.0",
39 "rimraf": "^2.6.2",
40 "rollup": "^0.58.2",
41 "rollup-plugin-commonjs": "^9.1.3",
42 "rollup-plugin-license": "^0.6.0",
43 "rollup-plugin-node-resolve": "^3.3.0",
44 "rollup-plugin-npm": "^2.0.0",
45 "rollup-plugin-shim": "^1.0.0",
46 "rollup-plugin-typescript2": "^0.13.0",
47 "rollup-plugin-uglify": "^3.0.0",
48 "sinon": "^5.0.3",
49 "tslint": "^5.11.0",
50 "typescript": "^3.0.1"
51 },
52 "scripts": {
53 "build": "rollup --config",
54 "build:watch": "rollup --config --watch",
55 "clean": "rimraf dist coverage .rpt2_cache build",
56 "lint": "run-s lint:prettier lint:tslint",
57 "lint:prettier": "prettier-check '{src,test}/**/*.ts'",
58 "lint:tslint": "tslint -t stylish -p .",
59 "lint:tslint:json": "tslint --format json -p . | tee lint-results.json",
60 "fix": "run-s fix:tslint fix:prettier",
61 "fix:prettier": "prettier --write '{src,test}/**/*.ts'",
62 "fix:tslint": "tslint --fix -t stylish -p .",
63 "test": "karma start test/karma/karma.unit.config.js",
64 "test:watch": "karma start test/karma/karma.unit.config.js --auto-watch --no-single-run",
65 "test:integration": "karma start test/karma/karma.integration.config.js",
66 "test:integration:watch": "karma start test/karma/karma.integration.config.js --auto-watch --no-single-run",
67 "test:saucelabs": "karma start test/karma/karma.saucelabs.config.js",
68 "size:check": "cat build/bundle.min.js | gzip -9 | wc -c | awk '{$1=$1/1024; print $1,\"kB\";}'",
69 "version": "node ../../scripts/versionbump.js src/version.ts"
70 },
71 "gitHead": "a91da22f8bd3bddb38fab7f868326e376da82d4d"
72}