UNPKG

2.48 kBJSONView Raw
1{
2 "name": "@sentry/browser",
3 "version": "4.0.2",
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.0.1",
19 "@sentry/types": "4.0.1",
20 "@sentry/utils": "4.0.1",
21 "md5": "2.2.1"
22 },
23 "devDependencies": {
24 "@types/md5": "2.1.32",
25 "chai": "^4.1.2",
26 "karma": "^2.0.2",
27 "karma-chai": "^0.1.0",
28 "karma-chrome-launcher": "^2.2.0",
29 "karma-failed-reporter": "0.0.3",
30 "karma-firefox-launcher": "^1.1.0",
31 "karma-mocha": "^1.3.0",
32 "karma-mocha-reporter": "^2.2.5",
33 "karma-rollup-preprocessor": "^6.0.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-typescript2": "^0.13.0",
46 "rollup-plugin-uglify": "^3.0.0",
47 "sinon": "^5.0.3",
48 "tslint": "^5.11.0",
49 "typescript": "^3.0.1"
50 },
51 "scripts": {
52 "build": "rollup --config",
53 "build:watch": "rollup --config --watch",
54 "clean": "rimraf dist coverage .rpt2_cache build",
55 "lint": "run-s lint:prettier lint:tslint",
56 "lint:prettier": "prettier-check '{src,test}/**/*.ts'",
57 "lint:tslint": "tslint -t stylish -p .",
58 "fix": "run-s fix:tslint fix:prettier",
59 "fix:prettier": "prettier --write '{src,test}/**/*.ts'",
60 "fix:tslint": "tslint --fix -t stylish -p .",
61 "test": "karma start karma/karma.unit.config.js",
62 "test:watch": "karma start karma/karma.unit.config.js --auto-watch --no-single-run",
63 "test:integration": "karma start karma/karma.integration.config.js",
64 "test:integration:watch": "karma start karma/karma.integration.config.js --auto-watch --no-single-run",
65 "size:check": "cat build/bundle.min.js | gzip -9 | wc -c | awk '{$1=$1/1024; print $1,\"kB\";}'",
66 "version": "node ../../scripts/versionbump.js src/version.ts"
67 },
68 "gitHead": "a91da22f8bd3bddb38fab7f868326e376da82d4d"
69}