-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 3 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
{
"name": "stylelint-plugin-carbon-tokens",
"version": "3.2.1",
"description": "A stylelint plugin to support the use of carbon component tokens.",
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"carbon",
"scss"
],
"author": "Lee Chase <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"type": "module",
"bugs": {
"url": "https://github.com/carbon-design-system/stylelint-plugin-carbon-tokens/issues"
},
"scripts": {
"lint": "run-p -s 'lint:*'",
"lint-fix": "run-s -s 'lint:es --fix' 'lint:style --fix' 'lint:format'",
"lint:es": "eslint . --ext js --report-unused-disable-directives --max-warnings 0",
"lint:format": "prettier ./**/*.{js,jsx,ts,tsx,md,mdx,scss} --write --ignore-unknown --no-error-on-unmatched-pattern --log-level warn",
"lint:spell": "cspell lint --quiet \"**/*.{js,jsx,css,scss,md}\"",
"postinstall": "ibmtelemetry --config=telemetry.yml",
"test": "echo Does not process globs. Run \"'node --test src/**/__tests__/*.js'\" from the console.",
"upgrade": "run-p -s 'upgrade:*'",
"upgrade:other": "npm-check-updates -u --dep dev,peer,prod --reject '/(carbon|^react$|^react-dom$|^@testing-library)/' --target minor",
"upgrade:carbon": "npm-check-updates -u --dep dev,peer,prod --packageFile 'package.json' --filter '/carbon/' --target minor"
},
"dependencies": {
"@carbon/colors": ">=10 <= 11",
"@carbon/layout": ">=10 <= 11",
"@carbon/motion": ">=10 <= 11",
"@carbon/themes": ">=10 <= 11",
"@carbon/type": ">=10 <= 11",
"@ibm/telemetry-js": "^1.6.1",
"postcss-scss": "^4.0.9",
"postcss-value-parser": "^4.2.0",
"stylelint": "^16.9.0"
},
"devDependencies": {
"@carbon/colors": "^11.4.0",
"@carbon/colors-10": "npm:@carbon/colors@^10.37.1",
"@carbon/colors-11-4": "npm:@carbon/[email protected]",
"@carbon/layout": "^11.5.0",
"@carbon/layout-10": "npm:@carbon/layout@^10.37.1",
"@carbon/layout-11-4": "npm:@carbon/[email protected]",
"@carbon/motion": "^11.3.0",
"@carbon/motion-10": "npm:@carbon/motion@^10.29.0",
"@carbon/themes": "^11.7.0",
"@carbon/themes-10": "npm:@carbon/themes@^10.54.0",
"@carbon/themes-11-4": "npm:@carbon/[email protected]",
"@carbon/type": "^11.7.0",
"@carbon/type-10": "npm:@carbon/type@^10.44.0",
"@carbon/type-11-4": "npm:@carbon/[email protected]",
"cspell": "^8.14.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-check-updates": "^16.14.20",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"stylelint-test-rule-node": "^0.3.0"
},
"engines": {
"node": ">=18"
},
"files": [
"CHANGELOG.md",
"config/*.*",
"index.js",
"README.md",
"src/**/*.*",
"!**/__tests__",
"telemetry.yml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/carbon-design-system/stylelint-plugin-carbon-tokens.git"
}
}