extension-workshop/package.json

44 строки
1.4 KiB
JSON
Исходник Обычный вид История

2019-01-15 00:24:51 +03:00
{
"name": "extension-workshop",
"version": "1.0.0",
"description": "Firefox Extension Workshop",
"main": "assets/scripts/scripts.js",
"repository": "https://github.com/mozilla/extension-workshop",
"author": "Lance Cummings <lance@glance.ca>",
2019-01-16 21:45:50 +03:00
"license": "MPL-2.0",
2019-01-15 00:24:51 +03:00
"private": true,
"dependencies": {
"dompurify": "1.0.11",
"foundation-sites": "6.5.3",
"hamburgers": "1.1.3",
"jquery": "3.4.1",
Content modules (#190) * Module syling for overview and standard hero modules as well as table of contents * highlighting page section navigation * type styles updated, new modules created, existing module migrated and page sections highlighted * Page meta data added, element shadows adjusted * Tiles cleaned up for better flexibility and images added for home page quick links * Ran prettier * Fixed mobile padding issue on aside tile and addressed circle ci build errors * ran yarn clean * Formatting cleaned up * Syntax highlighting added for code blocks * Fixed circle ci build errors * Fixed some layout issues * Added Github to footer * Turned off kramdown auto_ids * Adjusted css on rouge table * Removed unnecessary nesting * nested tile in quick links selector * Removed unused icomoon files * Added jekyll-target-blank plugin * Ran prettier * removed unneeded target attributes, since now handled by plugin * Adjusted module spacing and hid new tab links icon from footer and header containers * Ran prettier * Adjusted alignment of overlay panels * Fixed spacing rule on home page * Added page sections to overview pages and fixed mobile highlighting on top nav * Focus styles added for keyboard navigation * Ran prettier * Fixed formatting for frontmatter array * Renamed code syntax highlighting stylesheet and removed duplicated sidebar dropdown from tab index * Made expandable list keyboard accessible * Added push state to sidebar scrolling anchor tags * Ran prettier * Merged search and integrated search for tags * Updated external link formatting and removed 404 page from search index
2019-06-25 21:45:33 +03:00
"lunr": "^2.3.6",
2019-02-01 21:37:38 +03:00
"slick-carousel": "1.8.1",
"velocity-animate": "1.5.2",
"velocity-ui-pack": "1.2.2"
2019-02-05 21:26:13 +03:00
},
"devDependencies": {
"eslint": "6.0.1",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
2019-02-21 00:07:03 +03:00
"rimraf": "2.6.3",
"stylelint": "10.1.0",
"stylelint-config-standard": "18.3.0",
2019-05-16 20:34:32 +03:00
"svgo": "1.2.2"
2019-02-05 21:26:13 +03:00
},
"scripts": {
2019-02-05 22:23:04 +03:00
"lint": "eslint .",
2019-04-08 19:35:53 +03:00
"stylelint": "stylelint --syntax scss **/*.scss",
2019-02-05 21:26:13 +03:00
"prettier": "prettier --write '**'",
2019-02-05 23:30:05 +03:00
"prettier-ci": "prettier -c '**'",
2019-02-05 22:37:27 +03:00
"prettier-dev": "pretty-quick --branch master",
2019-04-08 19:35:53 +03:00
"test": "npm run prettier-ci && npm run lint && npm run stylelint",
2019-02-15 15:48:19 +03:00
"clean": "rimraf './.jekyll-cache/' && jekyll clean",
"build": "JEKYLL_ENV=production SVGO_BIN='node_modules/svgo/bin/svgo' jekyll build",
"start": "jekyll serve --unpublished --config _config.yml,_config_local.yml",
"start-prodlike": "SVGO_BIN='node_modules/svgo/bin/svgo' jekyll serve"
2019-01-15 00:24:51 +03:00
}
}