-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 KB
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": "@renault-digital/bash-base",
"version": "2.4.1",
"description": "A common lib for creating bash script easily.",
"private": false,
"publishConfig": {
"access": "public"
},
"preferGlobal": true,
"files": [
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"package-lock.json",
"scripts/test.sh",
"src/",
"bin/",
"docs/",
"man/",
"spec/"
],
"main": "bin/bash-base",
"bin": "bin/bash-base",
"man": "man/bash-base.1",
"directories": {
"doc": "docs",
"example": "example",
"test": "spec"
},
"scripts": {
"shellcheck": "docker run --rm -v \"$(pwd)\":/bash-base -w /bash-base koalaman/shellcheck:latest src/*.sh scripts/*.sh example/*.sh",
"shfmt": "docker run --rm -v \"$(pwd)\":/bash-base -w /bash-base mvdan/shfmt -l -w src/*.sh scripts/*.sh example/*.sh",
"lint:commit": " commitlint --from=$(git rev-list --max-parents=0 HEAD)",
"lint:comment": "./scripts/lint-comment.sh",
"lint": "npm run shellcheck && npm run lint:comment",
"test": "./scripts/test.sh",
"test:focus": "npm test -- -f t --focus #execute only fIt/fDescribe",
"test:coverage": "npm test -- --kcov -f t",
"build": "./scripts/build.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renault-digital/bash-base.git"
},
"keywords": [
"bash-base",
"renault digital"
],
"contributors": [
"Hongjie ZHANG <hongjie.zhang@renault.com> (https://github.com/zhang-hongjie)",
"Romain DARY <romain.dary@gmail.com> (https://github.com/merlindorin)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/renault-digital/bash-base/issues"
},
"homepage": "https://github.com/renault-digital/bash-base#readme",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"merge": ">=2.1.1",
"semantic-release": "^24.2.9"
}
}