This repository has been archived by the owner on Feb 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.42 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
{
"$schema": "https://json.schemastore.org/package",
"name": "@xeho91/postcss-config",
"version": "0.2.0",
"description": "xeho91's PostCSS reusable configuration.",
"keywords": [
"PostCSS",
"CSS"
],
"license": "MIT",
"author": {
"name": "Mateusz Kadlubowski",
"email": "[email protected]",
"url": "https://xeho91.com/"
},
"homepage": "https://github.com/xeho91/postcss-config",
"repository": {
"type": "git",
"url": "git+https://github.com/xeho91/postcss-config.git"
},
"bugs": {
"url": "https://github.com/xeho91/postcss-config/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/index.js",
"engines": {
"node": ">=14"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"dev": "tsc --watch",
"format": "dprint fmt ./source/**/*",
"lint": "eslint ./source/**/*"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^15.12.5",
"@xeho91/eslint-config": "^0.4.2",
"eslint": "^7.29.0",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"rimraf": "^3.0.2",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
},
"peerDependencies": {
"postcss": "^8.3.5"
},
"dependencies": {
"autoprefixer": "^10.2.6",
"glob": "^7.1.7",
"postcss-load-config": "^3.1.0",
"postcss-mixins": "^8.1.0",
"postcss-normalize": "^10.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^7.0.2",
"postcss-size": "^4.0.1"
}
}