-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
41
42
43
44
45
46
47
48
49
{
"name": "verdaccio-sentry",
"version": "0.0.2-beta",
"description": "sentry loggin errors",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@sentry/node": "^5.20.1",
"@verdaccio/commons-api": "^9.7.1",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/jest": "^24.0.21",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@verdaccio/babel-preset": "^9.7.1",
"@verdaccio/eslint-config": "^9.3.2",
"@verdaccio/types": "^9.7.2",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"standard-version": "^8.0.2",
"typescript": "^3.9.7"
},
"keywords": [
"verdaccio",
"plugin",
"middleware",
"sentry"
],
"license": "MIT",
"repository": "verdaccio/sentry",
"author": "Juan Picado <juanpicado19@gmail.com>",
"scripts": {
"release": "standard-version -a -s",
"build": "npm run build:types && npm run build:js",
"build:js": "babel src/ --out-dir lib --extensions \".ts,.tsx\"",
"build:types": "tsc --emitDeclarationOnly",
"test": "jest",
"lint": "eslint \"**/*.{js,ts}\""
}
}