-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "weather.gov",
"description": "",
"version": "1.0.0",
"main": "index.js",
"contributors": [
"Claire Annan",
"Stacy Dion",
"Eric Gade",
"Shad Keene",
"Igor Korenfeld",
"Logan McDonald",
"Sarah MH",
"Colin Murphy",
"Corey Pieper",
"Katrina Ranjo",
"Kari Sheets",
"Greg Walker",
"Elijah Wright",
"Janel Yamashiro",
"James Tranovich"
],
"license": "CC0-1.0",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@playwright/test": "^1.48.2",
"@types/node": "^22.9.0",
"axe-core": "^4.10.2",
"chai": "^5.1.2",
"dayjs": "^1.11.13",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"glob": "^11.0.0",
"jsdom": "^25.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^10.8.2",
"mocha-cli": "^1.0.1",
"playwright": "^1.48.2",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.0.0",
"whatwg-fetch": "^3.6.20",
"xml-parse": "^0.4.0"
},
"scripts": {
"load-spatial": "cd spatial-data && node load-shapefiles.js",
"a11y": "playwright test a11y",
"playwright:e2e": "playwright test e2e/*",
"js-component-tests": "npx mocha web/themes/**/tests/components/*-tests.js",
"js-format": "npx prettier -w 'web/themes/**/assets/**/*.js' 'tests/**/*.js' '*.js'",
"js-lint": "eslint '**/*.js'",
"php-format": "npx prettier -w 'web/**/*.php' 'web/**/*.php.test' 'web/**/*.theme' 'web/**/*.module'",
"style-format": "npx prettier -w 'web/themes/**/*.scss'",
"style-lint": "stylelint '**/*.scss'",
"compile-svg": "node ./scripts/compile-svg-sprite.js ./web/themes/new_weather_theme/assets/images/weather/icons/*.svg ./web/themes/new_weather_theme/assets/images/weather/icons/conditions/*.svg",
"check-translations": "node ./tests/translations/main.js"
},
"dependencies": {
"@prettier/plugin-php": "^0.22.2",
"mysql2": "^3.11.3",
"shapefile": "^0.6.6",
"twing": "^7.0.0"
}
}