This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.71 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.71 KB
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
{
"name": "taskr-filter",
"version": "1.0.1",
"description": "Filter plugin for Taskr",
"license": "WTFPL",
"repository": "https://github.com/caseyWebb/taskr-filter",
"files": [
"index.js"
],
"keywords": [
"taskr",
"taskr-plugin",
"filter"
],
"scripts": {
"lint": "eslint --ignore-path .gitignore ./",
"test": "jest",
"posttest": "rm -rf test/.tmp",
"release": "standard-version --sign && git push --follow-tags"
},
"author": {
"name": "Casey Webb",
"email": "notcaseywebb@gmail.com",
"url": "https://caseyWebb.xyz"
},
"dependencies": {
"lodash": "^4.17.4",
"multimatch": "^5.0.0"
},
"devDependencies": {
"@taskr/clear": "^1.1.0",
"eslint": "^8.5.0",
"eslint-config-profiscience": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.5.1",
"standard-version": "^9.0.0",
"taskr": "^1.1.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"taskr": "^1.1.0"
},
"engines": {
"node": ">= 12.0"
},
"eslintConfig": {
"extends": [
"profiscience"
],
"env": {
"jest": true,
"node": true
},
"parserOptions": {
"sourceType": "script",
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-unsafe-argument": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-var-requires": 0
}
},
"jest": {
"collectCoverage": true,
"testMatch": [
"<rootDir>/test/**/*.js"
]
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true
}
}