-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "commitlint-plugin-function-rules",
"version": "1.0.1",
"description": "Commitlint plugin to define rules as functions.",
"main": "dist/index.js",
"types": "dist/index.d.js",
"files": [
"dist/**/!(*.test).{js,d.ts}"
],
"scripts": {
"lint": "run-p format:check lint-es",
"lint:fix": "run-s format lint-es:fix",
"lint-es": "eslint --ext .ts,.tsx,.js,.jsx,.json .",
"lint-es:file": "eslint --ext .ts,.tsx,.js,.jsx,.json",
"lint-es:fix": "eslint --ext .ts,.tsx,.js,.jsx,.json --fix .",
"lint-es:file:fix": "eslint --ext .ts,.tsx,.js,.jsx,.json --fix",
"format": "prettier --ignore-path .eslintignore --write \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
"format:check": "prettier --ignore-path .eslintignore --check \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
"format:file": "prettier --write",
"build": "tsc",
"test": "jest",
"test:ci": "jest --ci --verbose",
"test:staged": "jest --passWithNoTests --findRelatedTests $(git diff --staged --name-only)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vidavidorra/commitlint-plugin-function-rules.git"
},
"keywords": [
"commitlint",
"commitlintplugin",
"plugin",
"rules"
],
"author": "Jeroen de Bruijn",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/vidavidorra/commitlint-plugin-function-rules/issues"
},
"homepage": "https://github.com/vidavidorra/commitlint-plugin-function-rules#readme",
"peerDependencies": {
"@commitlint/lint": "9.1.2"
},
"dependencies": {
"@commitlint/types": "9.1.2"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@commitlint/rules": "9.1.2",
"@jest/globals": "26.4.2",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"eslint": "7.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "24.0.0",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"jest": "26.4.2",
"lint-staged": "10.3.0",
"npm-run-all": "4.1.5",
"prettier": "2.1.1",
"semantic-release": "17.1.1",
"ts-jest": "26.3.0",
"typescript": "4.0.2"
}
}