-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "varbase_api",
"private": true,
"description": "A JSON:API implementation with authentication and authorization that allows for easy ingestion of content by other applications.",
"license": "GPL-2.0-or-later",
"engines": {
"yarn": ">= 4.9.3",
"node": ">= 20.0"
},
"keywords": [
"Drupal",
"Varbase",
"JSON API",
"Open API"
],
"author": "Vardot",
"scripts": {
"phpcs": "phpcs --standard=./.phpcs.xml .",
"phpcbf": "phpcbf --standard=./.phpcs.xml .",
"lint:js": "node ./node_modules/eslint/bin/eslint.js .",
"lint:css": "stylelint \"**/*.css\"",
"lint:yaml": "node ./node_modules/eslint/bin/eslint.js --ext .yml .",
"spellcheck": "cspell lint ."
},
"devDependencies": {
"cspell": "^8.16.1",
"eslint": "^9.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-yml": "^1.15.0",
"prettier": "^3.3.3",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4"
},
"browserslist": [
"last 2 Chrome major versions",
"last 2 Firefox major versions",
"last 2 Safari major versions",
"last 2 Edge major versions",
"last 2 Opera versions",
"last 2 iOS major versions",
"last 1 ChromeAndroid version",
"last 1 Samsung version",
"Firefox ESR"
],
"packageManager": "yarn@4.9.3"
}