-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
90 lines (90 loc) · 1.72 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "applause",
"version": "2.0.4",
"description": "Human-friendly replacements.",
"license": "MIT",
"repository": "outaTiME/applause",
"author": {
"name": "outaTiME",
"email": "afalduto@gmail.com",
"url": "https://outa.im"
},
"exports": "./index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "eslint . && ava",
"release": "release-it",
"prepare": "husky install"
},
"files": [
"index.js",
"src"
],
"keywords": [
"replace",
"replacement",
"pattern",
"patterns",
"match",
"text",
"string",
"regex",
"regexp",
"json",
"yaml",
"cson",
"flatten"
],
"dependencies": {
"lodash": "^4.17.21",
"optional-require": "^1.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@release-it/conventional-changelog": "^2.0.1",
"ava": "^3.15.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-xo": "^0.35.0",
"eslint-config-xo-space": "^0.27.0",
"husky": "^6.0.0",
"release-it": "^14.6.1"
},
"optionalDependencies": {
"cson-parser": "^4.0.8",
"js-yaml": "^4.0.0"
},
"eslintConfig": {
"extends": [
"xo",
"xo-space"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release-it": {
"hooks": {
"after:init": [
"npm test"
]
},
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
}
}