generated from mrchief/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "conventional-commits-pattern-filter",
"version": "1.1.0",
"description": "Filter commits by pattern, not just reverted ones",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "env-cmd -f .env.example jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrchief/conventional-commits-pattern-filter.git"
},
"keywords": [
"conventional",
"commits",
"filter",
"conventional-cmmits",
"conventional-changelog",
"conventional-commits-pattern-filter"
],
"author": "Hrusikesh Panda <mrchief_2000@yahoo.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrchief/conventional-commits-pattern-filter/issues"
},
"homepage": "https://github.com/mrchief/conventional-commits-pattern-filter#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"src/**/*.json": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"env-cmd": "^9.0.3",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.0.0",
"prettier": "^1.18.2"
}
}