forked from getsentry/sentry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "@sentry/cli",
"version": "1.30.3",
"description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
"scripts": {
"install": "node scripts/install.js",
"fix:eslint": "eslint --fix 'bin/*' js",
"fix:prettier": "prettier --write 'bin/*' 'js/**/*.js'",
"fix": "npm-run-all fix:eslint fix:prettier",
"test:jest": "jest",
"test:eslint": "eslint bin scripts js",
"test:prettier": "prettier-check 'bin/*' 'scripts/*.js' 'js/**/*.js'",
"test": "npm-run-all test:jest test:eslint test:prettier",
"test:watch": "jest --watch --notify"
},
"repository": {
"type": "git",
"url": "https://github.com/getsentry/sentry-cli"
},
"keywords": [
"sentry",
"sentry-cli",
"cli"
],
"bugs": {
"url": "https://github.com/getsentry/sentry-cli/issues"
},
"main": "js/index.js",
"bin": {
"sentry-cli": "bin/sentry-cli"
},
"dependencies": {
"https-proxy-agent": "^2.1.1",
"node-fetch": "^1.7.3",
"progress": "2.0.0",
"proxy-from-env": "^1.0.0"
},
"homepage": "https://docs.sentry.io/hosted/learn/cli/",
"license": "BSD-3-Clause",
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^21.2.1",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"prettier-check": "^2.0.0"
},
"engines": {
"node": ">= 4.5.0"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node"
}
}