-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 850 Bytes
/
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
{
"name": "next-monthly",
"version": "1.0.3",
"description": "Determines the next monthly occurence of a date, falling back on the last day of the month.",
"main": "./src/index.js",
"types": "./index.d.ts",
"scripts": {
"prepare": "husky install",
"test": "jest --verbose --silent && eslint ."
},
"keywords": [
"recurring",
"monthly",
"dates",
"billing"
],
"author": "Joakim Hedlund <contact@joakimhedlund.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3"
}
}