1
1
mirror of https://github.com/primer/css.git synced 2024-09-20 13:17:29 +03:00
css/package.json
github-actions[bot] 2d2fd04d84 Version Packages
2021-05-25 01:11:02 +00:00

95 lines
2.3 KiB
JSON

{
"name": "@primer/css",
"version": "17.1.1",
"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": "yarn dev",
"dev": "cd docs && yarn && yarn develop",
"pretest": "yarn dist && script/pretest",
"test": "jest",
"release": "changeset publish"
},
"dependencies": {
"@primer/primitives": "4.3.5"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.0",
"@changesets/cli": "2.16.0",
"@github/prettier-config": "0.0.4",
"autoprefixer": "10.2.5",
"cssstats": "4.0.2",
"eslint": "7.27.0",
"eslint-plugin-github": "4.1.3",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"filesize": "6.3.0",
"front-matter": "4.0.2",
"fs-extra": "10.0.0",
"globby": "11.0.3",
"jest": "26.6.3",
"js-yaml": "4.1.0",
"postcss": "8.3.0",
"postcss-import": "14.0.2",
"postcss-load-config": "3.0.1",
"postcss-node-sass": "3.1.0",
"postcss-scss": "3.0.5",
"postcss-simple-vars": "6.0.3",
"prettier": "2.3.0",
"semver": "7.3.5",
"stylelint": "13.13.1",
"stylelint-config-primer": "11.0.1",
"stylelint-scss": "3.19.0",
"table": "6.7.1"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/utils/"
]
},
"browserslist": [
"last 10 Chrome versions",
"last 4 Firefox versions",
"last 3 Safari versions",
"not Safari 12",
"last 4 Edge versions",
"not Edge <= 18",
"Firefox ESR"
],
"eslintConfig": {
"extends": [
"plugin:github/internal",
"plugin:github/recommended"
],
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017,
"requireConfigFile": false
}
}
}