-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "@uscreen.de/eslint-config-prettystandard-node",
"version": "0.2.12",
"description": "ESLint sharable config: prettier & standard for node",
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"eslint",
"eslintconfig",
"prettier",
"standard",
"node"
],
"homepage": "https://github.com/uscreen/eslint-config-prettystandard-node",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/eslint-config-prettystandard-node.git"
},
"author": {
"name": "Marcus Spiegel",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"eslint": "^8.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"prettier": "^2.8.3"
},
"devDependencies": {
"c8": "^10.1.3",
"husky": ">=8.0.1",
"lint-staged": ">=13.0.3",
"tap": "^16.3.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"scripts": {
"test": "c8 tap",
"test:cov": "c8 --reporter=html --reporter=text tap",
"test:ci": "c8 --reporter=lcovonly tap",
"prepare": "husky install"
}
}