-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
56 lines (56 loc) · 1.15 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
{
"name": "postcss-reporter",
"version": "7.1.0",
"description": "Log PostCSS messages in the console",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"unit": "tape test",
"test": "pnpm lint && pnpm unit && pnpm visual",
"visual": "node test/visual.js"
},
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=10"
},
"repository": "postcss/postcss-reporter",
"author": {
"name": "David Clark",
"email": "david.dave.clark@gmail.com",
"url": "https://davidtheclark.com"
},
"license": "MIT",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"peerDependencies": {
"postcss": "^8.1.0"
},
"devDependencies": {
"clean-publish": "^4.2.0",
"eslint": "8.56.0",
"less": "4.2.0",
"postcss": "^8.4.33",
"source-map": "0.7.4",
"strip-color": "^0.1.0",
"stylelint": "16.1.0",
"tape": "^5.7.3"
},
"dependencies": {
"picocolors": "^1.0.0",
"thenby": "^1.3.4"
},
"clean-publish": {
"cleanDocs": true
}
}