-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1010 Bytes
/
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
{
"name": "analytics-robot",
"description": "A tool for generating realistic Google Analytics 4 (GA4) events on the GOV.UK integration and staging environments. It does this by simply navigating to pages and (if required) interacting with specific elements and components (tags, accordions, links etc) in the same way a real user might.",
"private": true,
"author": "Government Digital Service",
"license": "MIT",
"scripts": {
"lint": "yarn run lint:js && yarn run lint:scss",
"lint:js": "standard 'app/javascript/application.js' 'app/javascript/channels/*.js'",
"lint:scss": "stylelint app/assets/stylesheets/"
},
"standardx": {
"env": {
"browser": true
}
},
"eslintConfig": {
"rules": {
"no-var": 0
}
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
},
"dependencies": {
"govuk-frontend": "^4.2.0"
},
"devDependencies": {
"standard": "^17.0.0",
"stylelint": "^14.9.1",
"stylelint-config-gds": "^0.2.0"
}
}