-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 KB
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
{
"name": "@sinonjs/eslint-config",
"description": "Common eslint config for Sinon",
"version": "7.0.3",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sinonjs/eslint-config-sinon.git"
},
"scripts": {
"lint": "eslint . ",
"prettier:check": "prettier --check '**/*.{js, md}'",
"prettier:write": "prettier --write '**/*.{js, md}'",
"prepare": "husky",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish --access public",
"test": "npm run lint"
},
"license": "BSD-3-Clause",
"files": [
"index",
"LICENSE",
"README.md",
".browserslistrc"
],
"main": "index.js",
"engines": {
"node": "^22.13.0 || >=24"
},
"dependencies": {
"eslint": "^10.2.0",
"eslint-plugin-compat": "^7.0.1",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-mocha": "^11.2.0",
"globals": "^15.15.0"
},
"devDependencies": {
"@studio/changes": "^3.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2"
},
"lint-staged": {
"*.{js,md}": "prettier --check",
"*.js": "eslint --quiet"
}
}