-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "@lion-docs/cli",
"version": "3.2.2",
"description": "liondocs cli is a command line tool that helps you to automate repetitive actions when translating documents to another language.",
"main": "./lib/index.js",
"bin": {
"liondocs": "./bin/liondocs.js"
},
"scripts": {
"commit": "git-cz",
"lint": "standard",
"semantic-release": "semantic-release",
"test": "jest"
},
"keywords": [
"git",
"sha",
"terminal",
"translated-content"
],
"author": {
"name": "Juan Vasquez",
"email": "[email protected]",
"url": "https://www.juanvasquez.dev/"
},
"homepage": "https://github.com/liondocs/cli#README.md",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"shelljs": "^0.8.5"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.0.0",
"semantic-release": "^24.0.0",
"standard": "^17.0.0"
},
"standard": {
"globals": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"it",
"assert",
"expect"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}