-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1005 Bytes
/
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
{
"name": "alchemy-sentry",
"description": "The Sentry plugin for Alchemy",
"author": "Jelle De Loecker <[email protected]>",
"version": "0.1.1",
"repository": "11ways/alchemy-sentry",
"license": "MIT",
"keywords": [
"skeleton",
"boilerplate",
"alchemymvc"
],
"contributors": [],
"dependencies": {
"@sentry/node": "~7.51.2"
},
"devDependencies": {
"alchemymvc": "~1.3.11",
"codecov": "~3.7.2",
"mocha": "~8.0.1",
"mongo-unit": "~2.0.1",
"nyc": "^15.1.0"
},
"peerDependencies": {
"alchemymvc": ">=1.3.11"
},
"scripts": {
"test": "node_modules/.bin/mocha --exit --reporter spec --bail --timeout 5000 --file test/00-init.js",
"appveyor": "node_modules/.bin/mocha --exit --reporter spec --bail --timeout 20000 --file test/00-init.js",
"coverage": "node_modules/.bin/nyc --reporter=text --reporter=lcov mocha --exit --timeout 20000 --bail --file test/00-init.js",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"engines": {
"node": ">=14.0.0"
}
}