forked from alphagov/govuk_publishing_components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"private": true,
"name": "govuk_publishing_components",
"license": "MIT",
"scripts": {
"lint:js": "standardx 'app/assets/javascripts/**/*.js' 'spec/javascripts/**/*.js'",
"lint:scss": "stylelint app/assets/stylesheets/",
"lint": "yarn run lint:js && yarn run lint:scss",
"jasmine:prepare": "bundle exec rake app:assets:clobber app:assets:precompile",
"jasmine:ci": "yarn run jasmine:prepare && yarn run jasmine-browser-runner runSpecs",
"jasmine:browser": "yarn run jasmine:prepare && yarn run jasmine-browser-runner"
},
"standardx": {
"ignore": [
"app/assets/javascripts/component_guide/vendor/**/*.js",
"app/assets/javascripts/govuk_publishing_components/vendor/**/*.js",
"spec/javascripts/helpers/*.js",
"spec/javascripts/vendor/*.js"
]
},
"eslintConfig": {
"rules": {
"no-var": 0
}
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
},
"dependencies": {
"axe-core": "^3.5.4",
"govuk-frontend": "^4.2.0",
"sortablejs": "^1.13.0"
},
"devDependencies": {
"@percy/cli": "^1.3.0",
"jasmine-browser-runner": "^1.1.0",
"jasmine-core": "^4.2.0",
"postcss": "^8.4.12",
"standardx": "^7.0.0",
"stylelint": "^14.9.1",
"stylelint-config-gds": "^0.2.0"
}
}