|
| 1 | +{ |
| 2 | + "name": "@sentry/gatsby", |
| 3 | + "version": "5.17.0", |
| 4 | + "description": "Offical Sentry SDK for Gatsby.js", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/gatsby", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "BSD-3-Clause", |
| 9 | + "keywords": ["gatsby", "gatsby-plugin"], |
| 10 | + "engines": { |
| 11 | + "node": ">=6" |
| 12 | + }, |
| 13 | + "main": "dist/index.js", |
| 14 | + "module": "esm/index.js", |
| 15 | + "types": "dist/index.d.ts", |
| 16 | + "publishConfig": { |
| 17 | + "access": "public" |
| 18 | + }, |
| 19 | + "dependencies": { |
| 20 | + "@sentry/react": "5.17.0", |
| 21 | + "@sentry/types": "5.17.0" |
| 22 | + }, |
| 23 | + "peerDependencies": { |
| 24 | + "gatsby": "*" |
| 25 | + }, |
| 26 | + "devDependencies": { |
| 27 | + "jest": "^24.7.1", |
| 28 | + "npm-run-all": "^4.1.2", |
| 29 | + "prettier": "^1.17.0", |
| 30 | + "prettier-check": "^2.0.0", |
| 31 | + "rimraf": "^2.6.3", |
| 32 | + "tslint": "^5.16.0", |
| 33 | + "typescript": "^3.5.1" |
| 34 | + }, |
| 35 | + "scripts": { |
| 36 | + "build": "run-p build:es5 build:esm", |
| 37 | + "build:es5": "tsc -p tsconfig.build.json", |
| 38 | + "build:esm": "tsc -p tsconfig.esm.json", |
| 39 | + "build:watch": "run-p build:watch:es5 build:watch:esm", |
| 40 | + "build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput", |
| 41 | + "build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", |
| 42 | + "clean": "rimraf dist coverage build esm", |
| 43 | + "link:yarn": "yarn link", |
| 44 | + "lint": "run-s lint:prettier lint:tslint", |
| 45 | + "lint:prettier": "prettier-check \"{src,test}/**/*.{ts,tsx}\"", |
| 46 | + "lint:tslint": "tslint -t stylish -p .", |
| 47 | + "lint:tslint:json": "tslint --format json -p . | tee lint-results.json", |
| 48 | + "fix": "run-s fix:tslint fix:prettier", |
| 49 | + "fix:prettier": "prettier --write \"{src,test}/**/*.{ts,tsx}\"", |
| 50 | + "fix:tslint": "tslint --fix -t stylish -p .", |
| 51 | + "test": "jest", |
| 52 | + "test:watch": "jest --watch" |
| 53 | + }, |
| 54 | + "jest": { |
| 55 | + "collectCoverage": true, |
| 56 | + "transform": { |
| 57 | + "^.+\\.ts$": "ts-jest", |
| 58 | + "^.+\\.tsx$": "ts-jest" |
| 59 | + }, |
| 60 | + "moduleFileExtensions": [ |
| 61 | + "js", |
| 62 | + "ts", |
| 63 | + "tsx" |
| 64 | + ], |
| 65 | + "testEnvironment": "jsdom", |
| 66 | + "testMatch": [ |
| 67 | + "**/*.test.ts", |
| 68 | + "**/*.test.tsx" |
| 69 | + ], |
| 70 | + "globals": { |
| 71 | + "ts-jest": { |
| 72 | + "tsConfig": "./tsconfig.json", |
| 73 | + "diagnostics": false |
| 74 | + } |
| 75 | + } |
| 76 | + }, |
| 77 | + "sideEffects": false |
| 78 | +} |
0 commit comments