-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "sentry-mina",
"description": "Sentry SDK for Mini-Program",
"version": "0.4.7",
"main": "./dist/sentry-mina.js",
"repository": "https://github.com/alexayan/sentry-mina.git",
"author": "alexayan",
"license": "BSD 3-Clause",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && ./node_modules/.bin/webpack",
"clean": "rimraf dist coverage",
"prepare": "npm run build"
},
"dependencies": {
"@sentry/core": "4.4.1",
"@sentry/types": "^4.4.1",
"@sentry/utils": "4.4.1"
},
"devDependencies": {
"@babel/runtime": "^7.5.5",
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.2.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"rimraf": "^2.6.2",
"webpack": "^4.27.0",
"webpack-cli": "^3.1.2"
}
}