-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 965 Bytes
/
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
{
"name": "eslint-plugin-check-filenames",
"version": "1.1.0",
"description": "Eslint rule for consistent filenames",
"author": "Good guys from Alfa-Bank",
"bugs": {
"url": "https://github.com/alfa-laboratory/eslint-plugin-check-filenames/issues"
},
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alfa-laboratory/eslint-plugin-check-filenames.git"
},
"scripts": {
"test": "jest .",
"coverage": "jest . --coverage",
"release-patch": "npm version patch -m 'chore(*): patch version'",
"release-minor": "npm version minor -m 'chore(*): minor version'",
"release-major": "npm version major -m 'chore(*): major version'",
"postversion": "git push origin master && git push --tags && npm run pub",
"pub": "npm publish"
},
"dependencies": {
"lodash.kebabcase": "^4.1.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"jest": "^25.2.7"
}
}