-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "cloudflight",
"version": "0.8.6",
"scripts": {
"build": "yarn workspaces foreach -ptA run build-package",
"lint": "eslint . && eslint --config .eslintrc.format.js .",
"test": "yarn workspaces foreach -pA run test-package",
"postinstall": "husky",
"publish-workspaces": "node ./scripts/prepare.js && yarn workspaces foreach -A --no-private npm publish"
},
"private": true,
"workspaces": [
"packages/*"
],
"author": "Cloudflight GmbH",
"license": "Apache-2.0",
"keywords": [
"stylelint",
"stylelintplugin"
],
"homepage": "https://github.com/cloudflightio/cloudflight-stylelint-plugin",
"bugs": {
"url": "https://github.com/cloudflightio/cloudflight-stylelint-plugin/issues"
},
"volta": {
"node": "20.11.1",
"yarn": "4.1.1"
},
"dependencies": {
"postcss": "8.4.35",
"postcss-html": "1.6.0",
"postcss-scss": "4.0.9",
"stylelint": "16.2.1",
"stylelint-config-html": "1.1.0",
"stylelint-config-standard-scss": "13.0.0",
"stylelint-order": "6.0.4",
"tslib": "2.6.2"
},
"devDependencies": {
"@cloudflight/eslint-plugin-typescript": "0.24.0",
"@rushstack/eslint-patch": "1.7.2",
"@types/jest": "29.5.12",
"@types/node": "20.11.25",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"lint-staged": {
"*.ts": "eslint --config .eslintrc.format.js --fix",
"*.js": "eslint --config .eslintrc.format.js --fix"
}
}