drop unnecessary bits from package-lock.json

This is actually the result I get running `npm install`. It
seems like there are a bunch of unnecessary dependencies in
the package-lock file, some of which have security
vulnerabilities. These don't overly matter, since we use
node only for the stylelint check, but if we're not using
them, it's better to be tidy.

Note that npm also seems to want to use "^" rules instead of
"~" in the actual package.json.
This commit is contained in:
Jeff King 2018-01-18 15:48:06 -05:00
Родитель c45d466120
Коммит 966fa0f0e0
2 изменённых файлов: 2 добавлений и 1435 удалений

1433
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -4,13 +4,13 @@
"homepage": "https://git-scm.com",
"scss": "./app/assets/stylesheets/git-scm.css.scss",
"devDependencies": {
"grunt": "~0.4.5",
"grunt": "^0.4.5",
"grunt-autoprefixer": "~2.2.0",
"grunt-parker": "~0.1.0",
"grunt-stylelint": "^0.9.0"
},
"dependencies": {
"stylelint": "7.13.0",
"stylelint": "^7.13.0",
"stylelint-config-primer": "2.2.3"
}
}