-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "eslint-plugin-ban",
"version": "1.6.0",
"description": "Allows you to bannish some methods or functions.",
"repository": {
"type": "git",
"url": "https://github.com/remithomas/eslint-plugin-ban"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"ban",
"function",
"method"
],
"author": "Rémi THOMAS",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write 'lib/*.js' 'tests/**/*.js'",
"test": "mocha tests --recursive",
"test:watch": "mocha tests --recursive --watch",
"validate": "npm run lint && npm run test"
},
"dependencies": {
"requireindex": "~1.2.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"growl": "^1.10.5",
"husky": "^7.0.4",
"jest": "^27.3.1",
"mocha": "^9.1.3",
"prettier": "^2.4.1"
},
"husky": {
"hooks": {
"pre-push": "npm run validate"
}
},
"engines": {
"node": ">=0.10.0"
},
"license": "ISC"
}