-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "netlify-plugin-sentry",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "ava --reset-cache",
"test": "ava -v",
"build": "netlify build",
"watch": "npm test -- --watch -v",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"netlify",
"netlify-plugin",
"error-tracking",
"sentry"
],
"files": [
"index.js",
"package.json",
"package-lock.json",
"README.md"
],
"author": "David Wells",
"repository": "https://github.com/netlify-labs/netlify-plugin-sitemap",
"bugs": {
"url": "https://github.com/netlify-labs/netlify-plugin-sitemap/issues"
},
"license": "MIT",
"dependencies": {
"@sentry/cli": "^1.52.3"
},
"engines": {
"node": ">=8.12.0"
},
"devDependencies": {
"ava": "^2.1.0",
"netlify-cli": "^2.48.0",
"rimraf": "^3.0.2"
}
}