-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.43 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
{
"name": "mahakala",
"version": "1.0.0",
"description": "A commandline application which is able to check your state against the NovaTime© time tracking system",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint ."
},
"engines": {
"node": ">= 14.0.0"
},
"keywords": [
"time-tracking"
],
"author": "急須",
"license": "MIT",
"dependencies": {
"crocks": "^0.12.0",
"request": "^2.88.0"
},
"devDependencies": {
"eslint": "8.51.0",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-jest": "27.4.2",
"jest": "29.7.0",
"responselike": "2.0.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"node": true
},
"plugins": [
"fp"
],
"extends": "plugin:fp/recommended",
"rules": {
"fp/no-mutation": [
"error",
{
"commonjs": true
}
]
},
"overrides": [
{
"files": [
"*.test.js"
],
"env": {
"jest": true
},
"plugins": [
"jest"
],
"rules": {
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/prefer-to-have-length": "warn",
"jest/valid-expect": "error",
"fp/no-unused-expression": "off",
"fp/no-nil": "off"
}
}
]
}
}