forked from cloudize/mongodb-atlas-scheduled-scaling-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "mongodb-atlas-scheduled-scaling-agent",
"author": "Cloudize Limited",
"contributors": [
{
"name": "Core API Team",
"email": "[email protected]"
}
],
"description": "MongoDB Atlas Scheduled Scaling Agent",
"license": "MIT",
"version": "1.0.4",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test:coverage": "jest --coverage --config jest.config.js",
"test:watch": "jest --watch --config jest.config.js",
"run:build": "node lib/src/index.js",
"run:dev": "ts-node src/index.ts",
"win:build": "jest --coverage && (if exist lib rmdir /s /q lib) && tsc",
"unx:build": "jest --coverage && rm -rf lib && tsc"
},
"dependencies": {
"@cloudize/json": "^23.1.5",
"@cloudize/logger": "^23.1.6",
"node-cron": "^3.0.2",
"urllib": "^3.11.0"
},
"devDependencies": {
"@cloudize/mock-logger": "^23.1.5",
"@types/jest": "29.4.1",
"@types/node": "18.15.2",
"@types/node-cron": "^3.0.7",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"eslint": "8.36.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.5.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudize/mongodb-atlas-scheduled-scaling-agent.git"
},
"bugs": {
"url": "https://github.com/cloudize/mongodb-atlas-scheduled-scaling-agent/issues"
},
"homepage": "https://github.com/cloudize/mongodb-atlas-scheduled-scaling-agent#readme"
}