-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.71 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
{
"name": "@kj4ezj/is",
"version": "0.0.1",
"description": "Extremely lightweight, zero dependency variable checks missing in nodeJS but common in other languages",
"main": "is.js",
"license": "MIT",
"homepage": "https://github.com/kj4ezj/is",
"bugs": "https://github.com/kj4ezj/is/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kj4ezj/is.git"
},
"author": {
"name": "Zach Butler",
"email": "[email protected]"
},
"scripts": {
"act": "act --artifact-server-path .github/artifacts --platform ubuntu-latest=catthehacker/ubuntu:js-latest",
"build": "scripts/build.sh",
"lint": "eslint .",
"reset": "scripts/reset.sh",
"test": "jest --coverage"
},
"files": [
"is.js"
],
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"es2020": true,
"jest": true
},
"rules": {
"arrow-parens": "off",
"import/extensions": "off",
"indent": [
"error",
4
],
"max-len": "off",
"no-restricted-syntax": "off",
"object-curly-spacing": "off"
}
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"**/*.ts"
],
"coveragePathIgnorePatterns": [
"coverage",
"dist",
"node_modules"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testPathIgnorePatterns": [
"coverage",
"dist",
"node_modules"
]
}
}