-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 2.94 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@lint-todo/stylelint-formatter-todo",
"version": "1.1.0",
"description": "A Stylelint formatter that can report errors as todos.",
"keywords": [
"stylelint"
],
"homepage": "https://github.com/lint-todo/stylelint-formatter-todo#readme",
"bugs": {
"url": "https://github.com/lint-todo/stylelint-formatter-todo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lint-todo/stylelint-formatter-todo.git"
},
"license": "MIT",
"contributors": [
"Jacky Lei <[email protected]>",
"Steve Calvert <[email protected]>"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --watch",
"clean": "tsc --build --clean",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"test": "npm-run-all lint test:*",
"test:jest": "npm run build && jest --no-cache"
},
"dependencies": {
"@lint-todo/utils": "^13.1.0",
"chalk": "^4.1.0",
"ci-info": "^3.3.0",
"common-tags": "^1.8.2",
"fs-extra": "^10.0.0",
"has-flag": "^4.0.0",
"picocolors": "^1.0.0",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"supports-hyperlinks": "^2.3.0",
"table": "^6.8.0",
"text-table": "^0.2.0",
"type-fest": "^0.20.2",
"validate-peer-dependencies": "^2.1.0"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@microsoft/jest-sarif": "^1.0.0-beta.0",
"@scalvert/bin-tester": "^2.1.1",
"@types/eslint": "^7.2.4",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.18",
"@types/stylelint": "^14.0.0",
"@types/text-table": "^0.2.1",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"date-fns": "^2.16.1",
"eslint": "^8.4.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"jest": "^26.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"release-it": "^14.2.0",
"release-it-lerna-changelog": "^3.1.0",
"stylelint": "^15.4.0",
"stylelint-sarif-formatter": "^1.0.7",
"tmp": "^0.2.1",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"stylelint": "^14.12.1 || ^15.0.0"
},
"engines": {
"node": ">= 14"
},
"volta": {
"node": "14.20.0",
"npm": "8.19.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files:": [
"lib/"
],
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}