-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
135 lines (135 loc) · 4.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "pagerbeauty",
"version": "1.1.1",
"description": "PagerDuty on-call dashboard widget",
"repository": "[email protected]:sergiitk/pagerbeauty.git",
"author": "Sergii Tkachenko <[email protected]>",
"license": "MIT",
"main": "./src/pagerbeauty",
"module": "./src/pagerbeauty",
"engines": {
"node": "^14.16.1",
"npm": "^6.14.12",
"yarn": "^1.22.5"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "NODE_ENV=test ava ./test/unit/*.test.js ./test/unit/**/*.test.js",
"test:unit:watch": "NODE_ENV=test ava --watch ./test/unit/*.test.js ./test/unit/**/*.test.js",
"test:unit:coverage": "NODE_ENV=test nyc --all -s ava ./test/unit/*.test.js ./test/unit/**/*.test.js",
"test:unit:coverage:report": "npm run test:unit:coverage && npm run coverage:report:text",
"test:integration": "NODE_ENV=test ava ./test/integration/*.test.js",
"test:acceptance": "NODE_ENV=test ava test/acceptance/*.test.js",
"test:full": "npm run test:unit && npm run test:integration",
"coverage:report:text": "nyc report --reporter=text",
"coverage:report:html": "nyc report --reporter=html",
"coverage:report:codecov": "nyc report --reporter=lcovonly && codecov",
"lint": "eslint --ext .js --ext .jsx -f unix .",
"eslint": "eslint --ext .js --ext .jsx",
"mock:pagerduty_api": "mockserver -m test/mocks",
"build": "webpack --config webpack.dev.js",
"build:watch": "webpack --watch --config webpack.dev.js",
"build:prod": "NODE_ENV=production webpack --config webpack.prod.js --display-modules",
"app": "node -r esm src/pagerbeauty.js",
"app:watch": "nodemon -r esm src/pagerbeauty.js",
"app:prod": "NODE_ENV=production node -r esm src/pagerbeauty.js",
"heroku-postbuild": "NODE_ENV=production webpack --config webpack.prod.js"
},
"dependencies": {
"basic-auth": "^2.0.1",
"dotenv": "^8.0.0",
"esm": "^3.2.25",
"koa": "^2.13.1",
"koa-mount": "^4.0.0",
"koa-route": "^3.2.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"luxon": "^1.26.0",
"node-fetch": "^2.6.0",
"nunjucks": "^3.2.3",
"tsscmp": "^1.0.6",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"ava": "^3.15.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.1",
"conventional-changelog-ember": "^2.0.9",
"css-loader": "^3.4.2",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-ava": "^10.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"faucet": "^0.0.1",
"mini-css-extract-plugin": "^0.9.0",
"mockserver": "^3.0.0",
"node-sass": "^4.12.0",
"nodemon": "^2.0.7",
"nyc": "^15.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prop-types": "^15.7.2",
"puppeteer-core": "5.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sass-loader": "^9.0.2",
"semantic-release": "^17.4.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.6.0",
"style-loader": "^1.1.3",
"tap-xunit": "^2.4.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-merge": "^5.7.3"
},
"nodemonConfig": {
"verbose": true,
"watch": [
"src"
],
"ext": "js,html.j2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage"
}
],
"@babel/preset-react"
]
},
"keywords": [
"pagerduty",
"datadog",
"dashboard",
"wallboard",
"on-call",
"widget",
"monitor",
"oncall",
"incidents",
"incident-management",
"schedules",
"schedule",
"datadog-dashboard",
"datadog-pagerduty",
"embeds",
"pager",
"oncalls-widget",
"grafana",
"grafana-dashboard",
"grafana-pagerduty"
]
}