-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.76 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
{
"name": "my-coding-style",
"version": "0.1.0",
"description": "I Will Follow The Rules",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"lint:sass": "sass-lint -c ./.sass-lint.yml './src/**/*.scss' --verbose --no-exit",
"lint:sass:fix": "sass-lint-auto-fix",
"lint:editorconfig": "eclint check $(git ls-files)",
"lint:editorconfig:fix": "eclint fix $(git ls-files)",
"lint:markdownlint": "markdownlint *.md",
"lint:dockerfile": "dockerfilelint Dockerfile",
"bump:major": "bump package.json --quiet --major",
"bump:minor": "bump package.json --quiet --minor",
"bump:patch": "bump package.json --quiet --patch",
"bump:prelease": "bump package.json --quiet --prerelease",
"bump:prelease:major": "bump package.json --quiet --premajor",
"bump:prelease:minor": "bump package.json --quiet --preminor",
"bump:prelease:patch": "bump package.json --quiet --prepatch",
"dependencies:gui": "npx npm-gui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magnobiet/my-coding-style.git"
},
"keywords": [],
"author": "Magno Biét <[email protected]> (https://magnobiet.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/magnobiet/my-coding-style/issues"
},
"homepage": "https://github.com/magnobiet/my-coding-style#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"bump-cli": "^1.1.3",
"dockerfilelint": "^1.5.0",
"eclint": "^2.8.1",
"eslint": "^5.16.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"markdownlint-cli": "^0.23.1",
"sass-lint": "^1.13.1",
"sass-lint-auto-fix": "^0.21.0"
}
}