-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "eslint-plugin-chai-friendly",
"version": "1.0.1",
"description": "This plugin makes 'no-unused-expressions' rule friendly towards chai expect statements.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"chai",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ihordiachenko/eslint-plugin-chai-friendly.git"
},
"homepage": "https://github.com/ihordiachenko/eslint-plugin-chai-friendly#readme",
"bugs": {
"url": "https://github.com/ihordiachenko/eslint-plugin-chai-friendly/issues"
},
"author": "Ihor Diachenko",
"contributors": [
"Brett Zamir"
],
"main": "lib/index.js",
"files": [
"lib/**/*.js"
],
"scripts": {
"lint": "eslint .",
"test": "nyc mocha tests --recursive",
"integration-test": "npx eslint examples/test.js --no-ignore"
},
"peerDependencies": {
"eslint": ">=3.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"chai": "^5.1.1",
"eslint": "^9.3.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT"
}