-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 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
{
"name": "emulsify_tools",
"version": "0.0.0",
"description": "Toolset of useful Twig extensions and a subtheme generation command",
"main": "index.js",
"engines": {
"node": ">=24"
},
"repository": "git@github.com:emulsify-ds/emulsify_tools.git",
"author": "techninja <james@tn42.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"all-contributors-cli": "^6.26.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"semantic-release": "^24.2.9"
},
"scripts": {
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "npm run lint",
"lint": "npm run lint-js",
"lint-fix": "npm run lint-js -- --fix",
"lint-js": "eslint --config config/eslint.config.js --no-error-on-unmatched-pattern ./config ./storybook",
"lint-staged": "lint-staged"
}
}