-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "@acuminous/knuff",
"version": "4.0.4",
"description": "Reminds teams of recurring or future work by creating tasks in your issue tracker of choice",
"main": "index.js",
"types": "./index.d.ts",
"license": "ISC",
"author": "Stephen Cresswell",
"publishConfig": {
"access": "public"
},
"keywords": [
"todo",
"reminder",
"schedule",
"cron",
"rrule",
"github",
"action",
"issue"
],
"scripts": {
"lint": "eslint .",
"lint-staged": "lint-staged",
"test": "zUnit",
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"prepare": "husky install"
},
"dependencies": {
"ajv": "^8.17.1",
"debug": "^4.4.0",
"luxon": "^3.5.0",
"rrule": "^2.8.1",
"unique-slug": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"nyc": "^17.1.0",
"object-path-immutable": "^4.1.2",
"zunit": "^4.0.2"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/acuminous/knuff.git"
},
"bugs": {
"url": "https://github.com/acuminous/knuff/issues"
},
"homepage": "https://github.com/acuminous/knuff#readme"
}