-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
131 lines (131 loc) Β· 6.17 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "android-patterns",
"version": "0.0.0",
"description": "Android Design Patterns Documentation",
"license": "GPL-3.0",
"scripts": {
"start-docker": "docker stack deploy -c docker-compose.yml dev",
"stop-docker": "docker stack rm dev",
"husky:install": "husky install",
"postinstall": "npm run husky:install",
"remark": "remark -q -f .",
"commit": "git-cz",
"release": "release-it",
"name": "node ./scripts/rootAppName.js",
"format": "prettier --single-quote --write **/*.{json,yaml,yml}",
"format:md": "remark-preset-davidtheclark --format",
"format:check": "prettier --check **/*.{json,yaml,yml}",
"format:doc": "alex",
"lint:text": "textlint docs",
"lint:md": "remark-preset-davidtheclark",
"lint:yaml": "yamllint --strict -c .yaml-lint.yml --ignore=okteto/deployment.yaml **/*.{yaml,yml}",
"lint:markdown": "markdownlint --config .markdownlint.yml docs/*.md",
"lint:json": "jsonlint ./package.json --quiet",
"lint:style": "stylelint --color --disable-default-ignores --allow-empty-input verbose **/*.{css,scss,sass}",
"lint:docker": "dockerfile_lint -r default_rules.yaml",
"lint:staged": "lint-staged --no-stash --allow-empty",
"validate:commit": "validate-commit-msg",
"pretty": "pretty-quick --staged --pattern '!test/tests/lint/**'",
"license": "license-checker --json > licenses.json",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"markdown": "markdown-link-check ./README.md ./SECURITY.md",
"git:diff": "git --no-pager diff --exit-code --stat HEAD",
"git:log": "git log -1 --format='format:%H' HEAD",
"git:clean": "git stash && git clean -fdX",
"git:ls": "git cat-file -p HEAD && git ls-tree -r HEAD",
"link-check": "repo-link-check -c config/config.yml -s filesystem -u",
"link-check-diff": "repo-link-check -c config/config.yml",
"link-check-dev-server": "repo-link-check -c config/config.yml -r http://localhost:3000",
"link-check-exclude": "repo-link-check -c config/config.yml -s filesystem -u only",
"docker:build": "docker build -f Dockerfile -t android-patterns .",
"docker:run": "docker run -ti --rm -v ${PWD}:/usr/src/app -e CI=1 android-patterns build --strict",
"postversion": "git push --follow-tags && npm publish --access public",
"bump:patch": "npm version patch --no-git-tag-version",
"bump:minor": "npm version minor --no-git-tag-version",
"bump:major": "npm version major --no-git-tag-version",
"release-patch": "git checkout master && npm run all && npm run bump:patch && git commit -a -m 'Build project codebase with patch version' && git push origin master --tags",
"release-minor": "git checkout master && npm run all && npm run bump:minor && git commit -a -m 'Build project codebase with minor version' && git push origin master --tags",
"release-major": "git checkout master && npm run all && npm run bump:major && git commit -a -m 'Build project codebase with major version' && git push origin master --tags",
"test:license": "license-checker --production --summary --unknown --onlyAllow=\"Apache-2.0;BSD;ISC;MIT;GPL-3.0;CC-BY-3.0;CC0-1.0;\"",
"format:all": "npm run format && npm run format:md",
"lint:all": "npm run lint:json && npm run lint:style && npm run lint:yaml && npm run lint:markdown && npm run lint:docker",
"check:all": "npm run pretty && npm run format:check",
"test:all": "npm run test:license",
"all": "npm run format:all && npm run lint:all && npm run check:all && npm run test:all"
},
"devDependencies": {
"alex": "^9.1.0",
"conventional-changelog-cli": "^2.1.1",
"dockerfile_lint": "^0.3.4",
"husky": "^7.0.1",
"git-cz": "^4.7.6",
"jsonlint": "^1.6.3",
"license-checker": "^25.0.1",
"lint-staged": "^11.0.1",
"markdown-link-check": "^3.8.7",
"markdownlint-cli": "^0.27.1",
"stylelint": "~13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.20.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"release-it": "^14.10.0",
"remark-cli": "^9.0.0",
"remark-lint-code-block-style": "^2.0.1",
"remark-lint-ordered-list-marker-value": "^2.0.1",
"remark-preset-davidtheclark": "^0.12.0",
"remark-validate-links": "^10.0.4",
"repo-link-check": "^0.7.1",
"textlint": "^12.0.2",
"textlint-rule-alex": "^3.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-en-capitalization": "^2.0.2",
"textlint-rule-stop-words": "^2.0.9",
"textlint-rule-terminology": "^2.1.5",
"textlint-rule-write-good": "^2.0.0",
"validate-commit-msg": "^2.14.0",
"yaml-lint": "^1.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexRogalskiy/android-patterns.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
},
"engines": {
"node": ">= 12.x"
},
"keywords": ["android design patterns"],
"maintainers": [
{
"name": "Alexander Rogalskiy",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Alexander Rogalskiy",
"email": "[email protected]"
}
],
"husky": {
"hooks": {
"pre-push": "npm run check:all",
"prepare-commit-msg": "git cz --hook --non-interactive --type=feat --subject=\"added new features\" || true",
"pre-commit": "npm run lint:staged && npm run all"
}
},
"bugs": {
"url": "https://github.com/AlexRogalskiy/android-patterns/issues"
},
"homepage": "https://github.com/AlexRogalskiy/android-patterns/",
"author": {
"name": "Alexander Rogalskiy",
"url": "https://github.com/AlexRogalskiy"
},
"funding": "https://github.com/sponsors/AlexRogalskiy"
}