-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "emulsify-drupal",
"version": "1.0.0",
"description": "Storybook development + Webpack Build + Drupal 10 theme",
"keywords": [
"component library",
"design system",
"drupal",
"pattern library",
"storybook",
"styleguide"
],
"author": "Four Kitchens <shout@fourkitchens.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/emulsify-ds/emulsify-drupal.git"
},
"bugs": {
"url": "https://github.com/emulsify-ds/emulsify-drupal/issues"
},
"homepage": "https://www.emulsify.info",
"scripts": {
"prepare": "husky install",
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "npm run lint",
"lint": "npm run lint:php",
"lint:php": "find ./ -name '*.php' -exec php -l {} \\;",
"lint-staged": "lint-staged",
"prepare": "[ -d '.git' ] && (husky install) || true",
"publish": "semantic-release --tag-format '${version}'",
"publish-test": "semantic-release --tag-format '${version}' --dry-run --debug",
"semantic-release": "semantic-release"
},
"dependencies": {
"graceful-fs": "^4.2.10"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.7",
"@semantic-release/release-notes-generator": "^14.0.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"semantic-release": "^24.1.0"
}
}