-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
125 lines (125 loc) · 3.14 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "adonis5-sentry",
"version": "3.2.0",
"description": "Sentry provider for AdonisJS 5",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"dev": "tsc --watch",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:files",
"copy:files": "cpx 'templates/**' 'build/templates'",
"build": "npm run compile",
"test": "node japaFile.js",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts --fix",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"prepare": "npm run build",
"run-prettier": "prettier --write .",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json reg2005/adonis5-sentry"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg2005/adonis5-sentry.git"
},
"keywords": [
"Adonis",
"5",
"adonis-sentry"
],
"author": "Evgeniy Ryumin",
"contributors": [
{
"name": "Vladyslav Parashchenko",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reg2005/adonis5-sentry/issues"
},
"homepage": "https://github.com/reg2005/adonis5-sentry#readme",
"types": "build/adonis-typings/index.d.ts",
"typings": "build/adonis-typings/index.d.ts",
"dependencies": {
"@sentry/node": "^7.75.0"
},
"devDependencies": {
"@adonisjs/ioc-transformer": "2.3.2",
"@adonisjs/mrm-preset": "^5.0.2",
"@types/node": "^14.17.6",
"adonis-provider-tester": "1.2.0",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"doctoc": "^1.4.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^2.1.0",
"eslint-plugin-prettier": "^4.0.0",
"get-port": "^6.0.0",
"github-label-sync": "^2.0.2",
"husky": "^4.3.8",
"japa": "^4.0.0",
"mrm": "^2.6.2",
"np": "^7.6.0",
"npm-audit-html": "^1.5.0",
"pino-pretty": "^7.3.0",
"prettier": "^2.5.1",
"sentry-testkit": "^4.0.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"yargs": "^15.1.0"
},
"husky": {
"hooks": {
"pre-commit": "doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validate-commit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"main": "build/index.js",
"files": [
"build/adonis-typings",
"build/providers",
"build/templates",
"build/index.d.ts",
"build/index.js"
],
"adonisjs": {
"types": "adonis5-sentry",
"providers": [
"adonis5-sentry"
],
"templates": {
"basePath": "./build/templates",
"config": [
{
"src": "config.txt",
"dest": "sentry"
}
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
}
}