-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
97 lines (97 loc) · 2.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@primer/stylelint-config",
"version": "13.2.1",
"description": "Sharable stylelint config used by GitHub's CSS",
"author": "GitHub, Inc.",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"browserslist": "extends @github/browserslist-config",
"repository": {
"type": "git",
"url": "git+https://github.com/primer/stylelint-config.git"
},
"keywords": [
"github",
"primer",
"css",
"stylelint-config",
"stylelint"
],
"files": [
"dist/",
"plugins/"
],
"engines": {
"node": ">16.0.0"
},
"scripts": {
"pretest": "npm run build",
"build": "rollup -c",
"clean": "rimraf dist",
"test": "npm run test:jest && npm run test:stylelint",
"test:jest": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --coverage false",
"test:stylelint": "stylelint __tests__/__fixtures__/good/",
"lint": "eslint .",
"release": "changeset publish"
},
"dependencies": {
"@github/browserslist-config": "^1.0.0",
"postcss-scss": "^4.0.2",
"postcss-styled-syntax": "^0.7.0",
"postcss-value-parser": "^4.0.2",
"string.prototype.matchall": "^4.0.2",
"stylelint": "^16.3.1",
"stylelint-browser-compat": "^1.0.0-beta.140",
"stylelint-config-standard": "^36.0.0",
"stylelint-scss": "^6.2.0",
"stylelint-value-no-unknown-custom-properties": "^6.0.1"
},
"prettier": "@github/prettier-config",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "2.27.9",
"@github/prettier-config": "^0.0.6",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typescript-eslint/parser": "^8.0.1",
"dedent": "^1.5.3",
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-preset-stylelint": "^7.0.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"rollup": "^4.21.1"
},
"peerDependencies": {
"@primer/primitives": "9.x || 10.x"
},
"jest": {
"transform": {},
"preset": "jest-preset-stylelint",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"plugins/**/*.js"
],
"setupFilesAfterEnv": [
"<rootDir>/__tests__/utils/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/utils",
"__tests__/__fixtures__"
]
}
}