-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.72 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
{
"name": "alert-chart",
"version": "1.0.0",
"main": "dist/alert-chart.js",
"engines": {
"node": ">=12.14"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "yarn lint && yarn env-cmd --silent jest --detectOpenHandles",
"lint": "eslint --ext .js,.ts src",
"build": "rimraf dist && mkdir dist && yarn tsc",
"prepublish": "yarn build",
"start": "yarn build && node dist/test-app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loune/alert-chart.git"
},
"bugs": {
"url": "https://github.com/loune/snap-push/issues"
},
"homepage": "https://github.com/loune/alert-chart#readme",
"keywords": [
"chart",
"charts",
"AWS",
"cloudwatch"
],
"author": "Loune Lam",
"license": "MIT",
"peerDependencies": {
"aws-sdk": "^2.817.0"
},
"peerDependenciesMeta": {
"aws-sdk": {
"optional": true
}
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"aws-sdk": "^2.817.0",
"env-cmd": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.6",
"typescript": "^4.1.3"
},
"dependencies": {
"canvas": "^2.6.1",
"chart.js": "^3.5.1",
"chartjs-adapter-moment": "^1.0.0",
"chartjs-node-canvas": "^4.0.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32"
}
}