This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.49 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
{
"name": "dynosched",
"version": "1.2.0",
"description": "Small and opinionated script to scale Heroku dynos up and down on a schedule",
"author": "Andre Gallo <afgallo@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/afgallo/dynosched.git"
},
"main": "index.js",
"bin": {
"dynosched": "./index.js"
},
"keywords": [
"heroku",
"dyno",
"schedule",
"scale"
],
"license": "MIT",
"scripts": {
"start": "node index.js",
"test": "jest --silent",
"test:cov": "jest --coverage",
"test:ci": "jest --coverage --silent",
"test:watch": "jest --watch",
"precommit": "lint-staged",
"lint": "standard"
},
"files": [
"lib/",
"package.json",
"index.js",
"README.md",
"LICENSE"
],
"engines": {
"node": "12.18.2",
"npm": "6.14.5"
},
"dependencies": {
"coveralls": "3.1.0",
"heroku-client": "3.1.0",
"moment": "2.27.0",
"moment-timezone": "0.5.31"
},
"devDependencies": {
"jest": "26.x.x",
"husky": "4.x.x",
"lint-staged": "10.x.x",
"standard": "14.x.x"
},
"lint-staged": {
"**/*.js": [
"standard --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 95,
"functions": 100,
"lines": 100
}
}
}
}