1
1
mirror of https://github.com/primer/css.git synced 2024-09-19 04:37:38 +03:00
css/package.json
dependabot[bot] bd183f3080
Bump @primer/octicons from 12.1.0 to 13.0.0
Bumps [@primer/octicons](https://github.com/primer/octicons) from 12.1.0 to 13.0.0.
- [Release notes](https://github.com/primer/octicons/releases)
- [Changelog](https://github.com/primer/octicons/blob/master/CHANGELOG.md)
- [Commits](https://github.com/primer/octicons/compare/v12.1.0...v13.0.0)

Signed-off-by: dependabot[bot] <support@github.com>
2021-04-07 17:50:42 +00:00

106 lines
2.7 KiB
JSON

{
"name": "@primer/css",
"version": "16.2.0",
"description": "The CSS implementation of GitHub's Primer Design System",
"homepage": "https://primer.style/css",
"author": "GitHub, Inc.",
"license": "MIT",
"style": "dist/primer.css",
"sass": "index.scss",
"main": "dist/primer.js",
"repository": "https://github.com/primer/css",
"bugs": {
"url": "https://github.com/primer/css/issues"
},
"keywords": [
"primer",
"css",
"github",
"design-system"
],
"scripts": {
"dist": "script/dist.js",
"stylelint": "stylelint --quiet src",
"eslint": "eslint deprecations.js __tests__ script",
"prepublishOnly": "script/prepublish",
"start": "npm run dev",
"dev": "cd docs && npm install && npm run develop",
"pretest": "yarn dist && script/pretest",
"test": "jest",
"release": "changeset publish"
},
"dependencies": {
"@primer/octicons": "13.0.0",
"@primer/primitives": "4.2.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.10",
"@changesets/changelog-github": "^0.3.0",
"@changesets/cli": "^2.14.1",
"@github/prettier-config": "0.0.4",
"autoprefixer": "9.8.6",
"colorette": "^1.2.1",
"cssstats": "3.3.0",
"eslint": "^7.23.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "^7.23.1",
"filesize": "4.1.2",
"front-matter": "4.0.2",
"fs-extra": "^9.1.0",
"globby": "^11.0.3",
"jest": "26.6.3",
"js-yaml": "4.0.0",
"minimist": "1.2.3",
"node-fetch": "2.6.1",
"postcss": "8.2.9",
"postcss-import": "^12.0.1",
"postcss-load-config": "3.0.1",
"postcss-loader": "^3.0.0",
"postcss-node-sass": "2.1.8",
"postcss-scss": "2.1.1",
"postcss-value-parser": "^4.1.0",
"prop-types": "^15.6.2",
"semver": "5.7.1",
"styled-components": "4.1.2",
"stylelint": "^13.12.0",
"stylelint-config-primer": "^11.0.1",
"stylelint-disable": "^0.1.5",
"stylelint-only": "^1.0.1",
"stylelint-scss": "^3.12.0",
"table": "5.2.3"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/utils/"
]
},
"browserslist": [
"> 5%",
"last 2 firefox versions",
"last 2 chrome versions",
"last 2 safari versions",
"last 2 edge versions",
"ie 11"
],
"eslintConfig": {
"extends": [
"plugin:github/internal",
"plugin:github/recommended"
],
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017,
"requireConfigFile": false
},
"parser": "@babel/eslint-parser"
}
}