forked from getsentry/sentry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "@sentry/cli",
"version": "1.68.0",
"description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
"homepage": "https://docs.sentry.io/hosted/learn/cli/",
"license": "BSD-3-Clause",
"keywords": [
"sentry",
"sentry-cli",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/getsentry/sentry-cli"
},
"bugs": {
"url": "https://github.com/getsentry/sentry-cli/issues"
},
"engines": {
"node": ">= 8"
},
"main": "js/index.js",
"bin": {
"sentry-cli": "bin/sentry-cli"
},
"scripts": {
"install": "node scripts/install.js",
"fix": "npm-run-all fix:eslint fix:prettier",
"fix:eslint": "eslint --fix bin/* scripts/**/*.js js/**/*.js",
"fix:prettier": "prettier --write bin/* scripts/**/*.js js/**/*.js",
"test": "npm-run-all test:jest test:eslint test:prettier",
"test:jest": "jest",
"test:watch": "jest --watch --notify",
"test:eslint": "eslint bin/* scripts/**/*.js js/**/*.js",
"test:prettier": "prettier --check bin/* scripts/**/*.js js/**/*.js"
},
"dependencies": {
"https-proxy-agent": "^5.0.0",
"mkdirp": "^0.5.5",
"node-fetch": "^2.6.0",
"npmlog": "^4.1.2",
"progress": "^2.0.3",
"proxy-from-env": "^1.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testPathIgnorePatterns": [
"src/utils"
]
}
}