-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.9 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
{
"name": "eslint-plugin-func-params-args",
"version": "4.0.0",
"description": "Limit the number of function parameters and arguments with ease and flexibility",
"author": "Abdulrahman (Abdu) Assabri <[email protected]>",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"function",
"func",
"args",
"params",
"parameters",
"arguments"
],
"repository": {
"type": "git",
"url": "https://github.com/abdusabri/eslint-plugin-func-params-args.git"
},
"homepage": "https://github.com/abdusabri/eslint-plugin-func-params-args",
"bugs": {
"url": "https://github.com/abdusabri/eslint-plugin-func-params-args/issues"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"main": "dist/index.js",
"scripts": {
"prettier:fix": "prettier --write **/*.{js,json,md}",
"prettier:check": "prettier --check **/*.{js,json,md}",
"test:unit": "mocha tests --recursive",
"test": "nyc mocha tests --recursive",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"cover": "nyc report --reporter=lcov",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rimraf dist && minify lib -d dist"
},
"dependencies": {
"requireindex": "~1.2.0",
"eslint-utils": "^3.0.0"
},
"peerDependencies": {
"eslint": "^6 || ^7.1.0 || ^8.0.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.12.0",
"babel-minify": "^0.5.1",
"coveralls": "^3.1.0",
"eslint": "^8.2.0",
"husky": "^8.0.2",
"lint-staged": "^15.0.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.0.2"
},
"files": [
"*.md",
"LICENSE",
"docs",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": "prettier --write"
}
}