forked from alphagov/whitehall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 885 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
34
35
36
37
38
{
"name": "whitehall",
"description": "Publishing and frontend rendering 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' 'test/javascripts/**/*.js'",
"lint:scss": "stylelint app/assets/stylesheets/"
},
"standardx": {
"env": {
"browser": true,
"jquery": true,
"qunit": true
},
"globals": [
"GOVUK",
"sinon"
],
"ignore": [
"app/assets/javascripts/templates.js",
"app/assets/javascripts/vendor/",
"test/javascripts/support/"
]
},
"eslintConfig": {
"rules": {
"no-var": 0
}
},
"devDependencies": {
"standardx": "^7.0.0",
"stylelint": "^13.12.0",
"stylelint-config-gds": "^0.1.0"
}
}