-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "content-publisher",
"description": "Publishing application for GOV.UK",
"private": true,
"author": "Government Digital Service",
"license": "MIT",
"scripts": {
"lint": "yarn run lint:js && yarn run lint:scss",
"lint:js": "standardx 'app/assets/javascripts/**/*.js' 'spec/javascripts/**/*.js'",
"lint:scss": "stylelint app/assets/stylesheets/",
"jasmine:prepare": "RAILS_ENV=test bundle exec rails assets:clobber 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": {
"env": {
"browser": true,
"jasmine": true
},
"globals": [
"GOVUK"
]
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
},
"eslintConfig": {
"rules": {
"no-var": 0
}
},
"devDependencies": {
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.3.0",
"postcss": "^8.4.47",
"standardx": "^7.0.0",
"stylelint": "^16.9.0",
"stylelint-config-gds": "^2.0.0"
},
"dependencies": {
"@webcomponents/custom-elements": "^1.6.0",
"abortcontroller-polyfill": "^1.7.5",
"accessible-autocomplete": "alphagov/accessible-autocomplete-multiselect",
"core-js-bundle": "^3.38.1",
"cropperjs": "^1.6.2",
"es5-polyfill": "^0.0.6",
"jasmine": "^5.3.1",
"markdown-toolbar-element": "^0.2.0",
"miller-columns-element": "^2.0.0",
"paste-html-to-govspeak": "^0.4.0",
"raven-js": "^3.27.2",
"url-polyfill": "^1.1.12",
"whatwg-fetch": "^3.6.20"
},
"resolutions": {
"stylelint/string-width": "4.2.3"
}
}