-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.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
{
"name": "sentry-monitor",
"version": "1.0.0",
"description": "Monitor Sentry (https://getsentry.io) events and issues and report them to New Relic, Anodot for dashboards and anomaly detection",
"keywords": [
"sentry", "anodot", "newrelic", "monitoring", "devops"
],
"main": "index.js",
"scripts": {
"start": "node index.js",
"pretest": "eslint .",
"test": "export JASMINE_CONFIG_PATH=test/jasmine.json; export BABEL_ENV=specs; jasmine",
"build": ":",
"release": "wnpm-release -- --no-shrinkwrap",
"postrelease": "echo \"##teamcity[buildStatus text='Version: `jq -r '.version' package.json`; {build.status.text}']\""
},
"author": "Aaron Greenwald",
"license": "MIT",
"dependencies": {
"express": "^4.14.0",
"lodash": "^4.17.2",
"node-fetch": "^1.6.3",
"parse-link-header": "^0.4.1"
},
"optionalDependencies": {
"wnpm-ci": "^6.2.44"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-wix": "^1.1.3",
"jasmine": "^2.5.2",
"jasmine-reporters": "^2.2.0",
"jasmine2-reporter": "^0.2.0"
}
}