Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Commit 0e266fc

Browse files
authored
bump version to 0.9.0 (#228)
1 parent 93c0b18 commit 0e266fc

File tree

1 file changed

+30
-8
lines changed

1 file changed

+30
-8
lines changed

package.json

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
22
"name": "eslint-plugin-sonarjs",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "SonarJS rules for ESLint",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
77
"repository": "[email protected]:SonarSource/eslint-plugin-sonarjs.git",
88
"license": "LGPL-3.0",
9-
"keywords": ["sonarjs", "eslint", "eslintplugin"],
9+
"keywords": [
10+
"sonarjs",
11+
"eslint",
12+
"eslintplugin"
13+
],
1014
"bugs": {
1115
"url": "https://github.com/SonarSource/eslint-plugin-sonarjs/issues"
1216
},
@@ -62,21 +66,39 @@
6266
"endOfLine": "lf"
6367
},
6468
"jest": {
65-
"roots": ["tests", "src"],
66-
"collectCoverageFrom": ["src/**/*.ts"],
69+
"roots": [
70+
"tests",
71+
"src"
72+
],
73+
"collectCoverageFrom": [
74+
"src/**/*.ts"
75+
],
6776
"globals": {
6877
"ts-jest": {
6978
"babelConfig": false
7079
}
7180
},
72-
"moduleFileExtensions": ["ts", "js", "json"],
81+
"moduleFileExtensions": [
82+
"ts",
83+
"js",
84+
"json"
85+
],
7386
"transform": {
7487
"^.+\\.ts$": "ts-jest"
7588
},
76-
"testMatch": ["<rootDir>/tests/**/*.test.ts"]
89+
"testMatch": [
90+
"<rootDir>/tests/**/*.test.ts"
91+
]
7792
},
7893
"lint-staged": {
79-
"*.{ts,tsx,js}": ["eslint", "prettier --write", "git add"],
80-
"*.json": ["prettier --write", "git add"]
94+
"*.{ts,tsx,js}": [
95+
"eslint",
96+
"prettier --write",
97+
"git add"
98+
],
99+
"*.json": [
100+
"prettier --write",
101+
"git add"
102+
]
81103
}
82104
}

0 commit comments

Comments
 (0)