forked from axa-ch/metalsmith-postcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.34 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
{
"name": "@metalsmith/postcss",
"version": "5.4.1",
"description": "A Metalsmith plugin that sends your CSS through any PostCSS plugins.",
"keywords": [
"metalsmith",
"metalsmith-plugin",
"postcss",
"css",
"preprocessor"
],
"homepage": "https://github.com/metalsmith/postcss",
"bugs": {
"url": "https://github.com/metalsmith/postcss/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/metalsmith/postcss"
},
"license": "MIT",
"author": "Kevin Van Lierde (https://webketje.com)",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib"
],
"source": "src/index.js",
"main": "lib/index.cjs",
"module": "lib/index.js",
"type": "module",
"types": "lib/index.d.ts",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"scripts": {
"changelog": "auto-changelog -u --commit-limit false --ignore-commit-pattern '^((dev|chore|ci):|Release)'",
"coverage": "npm test && c8 report --reporter=text-lcov > ./coverage.info",
"format": "prettier --write \"**/*.{yml,md,js,json}\"",
"format:check": "prettier --list-different \"**/*.{yml,md,js,json}\"",
"lint": "eslint --fix .",
"lint:check": "eslint --fix-dry-run .",
"release": "release-it .",
"prepack": "npm run build",
"test": "c8 mocha",
"test:e2e": "npm test && serve -l 3000 test/fixtures",
"build": "microbundle --target node --no-sourcemap -f cjs,esm --strict --generateTypes=false"
},
"devDependencies": {
"@metalsmith/sass": "^1.11.0",
"assert-dir-equal": "github:webketje/assert-dir-equal#v2.0.0",
"auto-changelog": "^2.5.0",
"autoprefixer": "^10.4.20",
"c8": "^10.1.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"metalsmith": "^2.6.3",
"microbundle": "^0.15.1",
"mocha": "^10.8.2",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-reporter": "^7.1.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"serve": "^14.2.4",
"stylelint": "^15.11.0"
},
"peerDependencies": {
"metalsmith": "^2.5.0",
"postcss": "^5.0.4 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"engines": {
"node": ">=14.18.0"
},
"publishConfig": {
"access": "public"
}
}