forked from fourkitchens/sous-drupal-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.85 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
{
"name": "sous-project",
"version": "0.0.1",
"description": "A starter kit for a Drupal project",
"scripts": {
"confim": "./scripts/sous/confim.sh",
"confex": "./scripts/sous/confex.sh",
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "npm run lint",
"import-data": "./scripts/sous/import-data.sh",
"lint:js": "eslint --color --no-error-on-unmatched-pattern --format stylish {web/modules/custom,web/themes/custom}/**/*.js",
"lint:php": "find web/modules/custom web/themes/custom -name '*.php' -exec php -l {} \\;",
"lint:styles": "stylelint --color {web/modules/custom,web/themes/custom}/**/*.scss",
"prettier": "prettier '{docs,web/modules/custom,web/themes/custom}/**/*.{json,md,js,html,scss,html}' --ignore-unknown --list-different",
"local-data-bak": "./scripts/sous/local-data-bak.sh",
"prepare": "husky install",
"publish": "semantic-release --tag-format '${version}'",
"publish-test": "semantic-release --tag-format '${version}' --dry-run --debug",
"postinstall": "patch-package",
"rebuild": "./scripts/sous/rebuild.sh",
"theme-build": "./scripts/sous/theme-build.sh",
"theme-watch": "./scripts/sous/theme-watch.sh"
},
"repository": {
"type": "git",
"url": "[email protected]:fourkitchens/sous-drupal-project.git"
},
"keywords": [
"sous"
],
"author": "Four Kitchens",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@emulsify/cli": "^1.6.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/release-notes-generator": "^10.0.3",
"husky": "^8.0.3",
"patch-package": "^6.2.2",
"semantic-release": "^19.0.5"
}
}