-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.85 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.85 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
52
53
{
"name": "simple_oauth_21",
"version": "1.0.0",
"description": "Drupal module for rendering proxy blocks",
"private": true,
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"js:check": "npm run lint:check && npm run format:check",
"js:fix": "npm run lint:fix && npm run format:fix",
"cspell:check": "cspell '**/*.{php,md,yml,yaml,txt}' --no-progress --show-context",
"stylelint:check": "stylelint '**/*.css'",
"check": "npm run js:check && npm run stylelint:check && npm run cspell:check",
"semantic-release": "semantic-release",
"e2e:install": "playwright install",
"e2e:test": "playwright test",
"e2e:test:headed": "playwright test --headed",
"e2e:test:debug": "playwright test --debug",
"e2e:report": "playwright show-report",
"prepare": "husky"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@lullabot/playwright-drupal": "github:Lullabot/playwright-drupal",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/release-notes-generator": "^12.1.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cspell": "^9.2.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-yml": "^1.18.0",
"husky": "^9.1.7",
"playwright": "^1.49.1",
"prettier": "^3.6.2",
"semantic-release": "^22.0.0",
"stylelint": "^16.22.0",
"stylelint-config-standard": "^38.0.0"
},
"dependencies": {
"@playwright/test": "^1.49.1"
}
}