1
1
mirror of https://github.com/primer/css.git synced 2024-11-30 11:17:05 +03:00
css/package.json

106 lines
2.7 KiB
JSON
Raw Normal View History

{
"name": "@primer/css",
2021-03-31 04:06:07 +03:00
"version": "16.1.2",
"description": "The CSS implementation of GitHub's Primer Design System",
2019-03-06 08:40:34 +03:00
"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": {
2019-09-10 21:23:05 +03:00
"dist": "script/dist.js",
"stylelint": "stylelint --quiet src",
2021-04-01 20:56:12 +03:00
"eslint": "eslint deprecations.js __tests__",
2021-03-26 00:16:57 +03:00
"prepublishOnly": "script/prepublish",
2019-07-30 02:56:17 +03:00
"start": "npm run dev",
2019-08-13 01:33:06 +03:00
"dev": "cd docs && npm install && npm run develop",
2021-04-01 08:40:51 +03:00
"pretest": "yarn dist && script/pretest",
2021-03-28 08:50:24 +03:00
"test": "jest",
2021-03-22 07:50:54 +03:00
"release": "changeset publish"
2016-05-25 21:56:43 +03:00
},
"dependencies": {
2021-04-01 21:11:54 +03:00
"@primer/octicons": "12.1.0",
2021-03-29 19:00:50 +03:00
"@primer/primitives": "4.1.0"
},
"devDependencies": {
2021-03-27 03:01:41 +03:00
"@babel/eslint-parser": "^7.13.10",
2021-03-25 23:12:06 +03:00
"@changesets/changelog-github": "^0.3.0",
2021-03-22 07:50:54 +03:00
"@changesets/cli": "^2.14.1",
2021-03-27 03:19:31 +03:00
"@github/prettier-config": "0.0.4",
2020-08-10 20:34:46 +03:00
"autoprefixer": "9.8.6",
"colorette": "^1.2.1",
2019-04-06 02:58:46 +03:00
"cssstats": "3.3.0",
2021-03-27 02:46:41 +03:00
"eslint": "^7.23.0",
"eslint-plugin-github": "^4.1.2",
2021-04-01 20:56:12 +03:00
"eslint-plugin-jest": "24.3.2",
2021-03-27 02:46:41 +03:00
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
2019-04-26 23:11:44 +03:00
"filesize": "4.1.2",
2021-03-31 02:53:47 +03:00
"front-matter": "4.0.2",
2017-10-10 21:41:41 +03:00
"fs-extra": "^4.0.2",
"globby": "^6.1.0",
2021-03-28 08:50:24 +03:00
"jest": "26.6.3",
2021-03-30 20:01:19 +03:00
"js-yaml": "4.0.0",
"minimist": "1.2.3",
"node-fetch": "2.6.1",
2020-08-10 20:34:46 +03:00
"postcss": "7.0.32",
"postcss-import": "^12.0.1",
2020-08-10 20:34:46 +03:00
"postcss-load-config": "2.1.0",
"postcss-loader": "^3.0.0",
2019-02-12 06:42:49 +03:00
"postcss-node-sass": "2.1.8",
2020-08-10 20:34:46 +03:00
"postcss-scss": "2.1.1",
"postcss-value-parser": "^4.1.0",
"prop-types": "^15.6.2",
2019-09-05 21:13:19 +03:00
"semver": "5.7.1",
2017-08-16 21:30:16 +03:00
"style-loader": "^0.18.2",
"styled-components": "4.1.2",
"stylelint": "^10.1.0",
2020-10-02 20:13:30 +03:00
"stylelint-config-primer": "^9.2.1",
2019-11-01 21:17:05 +03:00
"stylelint-disable": "^0.1.5",
"stylelint-only": "^1.0.1",
2019-11-01 01:05:43 +03:00
"stylelint-scss": "^3.12.0",
2021-03-31 03:13:58 +03:00
"table": "5.2.3"
2021-03-30 08:10:34 +03:00
},
"jest": {
2021-03-31 02:53:47 +03:00
"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"
2021-04-06 06:35:12 +03:00
],
"eslintConfig": {
"extends": [
"plugin:github/internal",
"plugin:github/recommended"
],
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017,
"requireConfigFile": false
},
"parser": "@babel/eslint-parser"
}
}