-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.38 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
{
"name": "bibliofil",
"description": "Drupal subtheme theme for Bibsystemer",
"repository": {
"type": "git",
"url": "https://github.com/easySuite/bibliofil-subtheme"
},
"author": "",
"homepage": "https://github.com/easySuite/bibliofil-subtheme",
"engines": {
"node": "=16"
},
"dependencies": {
"node-sass": "^9.0.0",
"postcss-sass": "^0.5.0",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.2.1"
},
"devDependencies": {
"@applitools/eyes-cypress": "^3.29.1",
"axe-core": "^4.3.5",
"cy-mobile-commands": "^0.3.0",
"cypress": "^9.7.0",
"cypress-axe": "^0.14.0",
"cypress-html-validate": "^5.1.2",
"cypress-if": "^1.10.1",
"cypress-iframe": "^1.0.1",
"cypress-localstorage-commands": "^1.7.0",
"cypress-wait-until": "^1.7.2",
"cypress-xpath": "^2.0.1",
"html-validate": "^7.13.2"
},
"scripts": {
"sass-dev": "node-sass sass -o sass_css --sourceMap=true --indentWidth=4",
"sass-validate": "stylelint sass --custom-syntax=postcss-sass",
"sass": "node-sass sass -o sass_css --outputStyle=compressed",
"cypress:open": "cypress open"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"no-invalid-double-slash-comments": null,
"rule-empty-line-before": null,
"declaration-empty-line-before": null
}
}
}