-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.13 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
{
"name": "personal-distro-configurator",
"version": "0.0.6",
"description": "A framework to configure by zero your own distro.",
"license": "MIT",
"author": "Jonathan Peres <[email protected]>",
"repository": "https://github.com/personal-distro-configurator/personal-distro-configurator.git",
"bugs": "https://github.com/personal-distro-configurator/personal-distro-configurator/issues",
"keywords": [
"pdc",
"personal-distro-configurator",
"linux"
],
"scripts": {
"lint-sh": "shellcheck -x pdc/*.sh pdc/sh/**/*.sh",
"lint-editorconfig": "editorconfig-checker --list-files",
"lint": "npm run lint-sh && npm run lint-editorconfig",
"test-bats": "bats test/unit/*",
"test": "npm run lint && npm run test-bats",
"release-authors": "bash hack/release/authors.sh",
"release-changelog": "bash hack/release/changelog.sh",
"release": "npm run release-authors && npm run release-changelog",
"preversion": "npm test",
"version": "npm run release && git add ."
},
"devDependencies": {
"bats": "^1.1.0",
"editorconfig-checker": "^1.1.1",
"shellcheck": "^0.0.8"
}
}