-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "@ferocia-oss/eslint-plugin",
"version": "1.0.0",
"description": "Shareable ESLint Rules",
"main": "src/index.js",
"files": [
"src/*.js",
"!src/*.spec.js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "yarn format:check && jest",
"dev": "jest --watch",
"format": "prettier --write '**/*.{js,md,yml}'",
"format:check": "prettier --list-different '**/*.{js,md,yml}'",
"prepare": "husky install"
},
"repository": "git@github.com:ferocia/eslint-plugin.git",
"author": "Lucas Azzola <lucas.azzola@ferocia.com.au>",
"license": "MIT",
"prettier": {
"trailingComma": "all",
"arrowParens": "avoid",
"singleQuote": true,
"bracketSpacing": false
},
"devDependencies": {
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-runner-eslint": "^1.0.0",
"prettier": "~2.5.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.5.5"
},
"jest": {
"watchPlugins": [
"jest-runner-eslint/watch-fix"
],
"projects": [
{
"displayName": "test"
},
{
"runner": "jest-runner-eslint",
"displayName": "lint",
"testMatch": [
"<rootDir>/src/**/*.js"
]
}
]
}
}