-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.09 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
{
"name": "sous-project",
"version": "0.0.1",
"description": "A starter kit for a Drupal project",
"scripts": {
"setup": "./devops/scripts/setup.sh",
"confim": "./devops/scripts/confim.sh",
"confex": "./devops/scripts/confex.sh",
"get-db": "./devops/scripts/get-db.sh",
"install-recipe": "./devops/scripts/install-recipe.sh",
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "npm run lint",
"import-data": "./devops/scripts/import-data.sh",
"lint": "npm run lint:php && npm run lint:js",
"lint:js": "eslint --config web/themes/custom/sous-project/config/emulsify-core/eslint.config.js --no-error-on-unmatched-pattern ./src {web/modules/custom,web/themes/custom/sous-project/src}/**/*.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": "./devops/scripts/local-data-bak.sh",
"prepare": "husky",
"publish": "semantic-release",
"publish-test": "semantic-release --dry-run --debug",
"postinstall": "patch-package",
"rebuild": "./devops/scripts/rebuild.sh",
"theme-build": "./devops/scripts/theme-build.sh",
"theme-watch": "./devops/scripts/theme-watch.sh",
"sous-build": "./devops/scripts/sous-build.sh"
},
"repository": {
"type": "git",
"url": "git@github.com:fourkitchens/sous-drupal-project.git"
},
"keywords": [
"sous"
],
"author": "Four Kitchens",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@emulsify/cli": "^1.12.2",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"patch-package": "^8.0.1",
"semantic-release": "^25.0.2"
}
}