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": {
|
2019-06-24 12:43:21 +03:00
|
|
|
"dompurify": "1.0.11",
|
2019-02-05 22:40:59 +03:00
|
|
|
"foundation-sites": "6.5.3",
|
2019-06-06 20:33:51 +03:00
|
|
|
"hamburgers": "1.1.3",
|
2019-05-03 02:22:33 +03:00
|
|
|
"jquery": "3.4.1",
|
2019-06-25 22:39:42 +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": {
|
2019-08-20 17:15:45 +03:00
|
|
|
"eslint": "6.2.1",
|
2019-08-20 11:14:16 +03:00
|
|
|
"eslint-config-prettier": "6.1.0",
|
2019-05-24 13:48:31 +03:00
|
|
|
"eslint-plugin-prettier": "3.1.0",
|
2019-06-10 13:33:33 +03:00
|
|
|
"prettier": "1.18.2",
|
2019-06-14 21:09:28 +03:00
|
|
|
"pretty-quick": "1.11.1",
|
2019-08-15 16:44:11 +03:00
|
|
|
"rimraf": "3.0.0",
|
2019-06-10 13:37:17 +03:00
|
|
|
"stylelint": "10.1.0",
|
2019-05-24 18:44:17 +03:00
|
|
|
"stylelint-config-standard": "18.3.0",
|
2019-07-25 18:27:52 +03:00
|
|
|
"svgo": "1.3.0"
|
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",
|
2019-02-13 21:46:38 +03:00
|
|
|
"start-prodlike": "SVGO_BIN='node_modules/svgo/bin/svgo' jekyll serve"
|
2019-01-15 00:24:51 +03:00
|
|
|
}
|
|
|
|
}
|