1 | {
|
---|
2 | "name": "postcss-loader",
|
---|
3 | "version": "6.1.1",
|
---|
4 | "description": "PostCSS loader for webpack",
|
---|
5 | "license": "MIT",
|
---|
6 | "repository": "webpack-contrib/postcss-loader",
|
---|
7 | "author": "Andrey Sitnik <andrey@sitnik.ru>",
|
---|
8 | "homepage": "https://github.com/webpack-contrib/postcss-loader",
|
---|
9 | "bugs": "https://github.com/webpack-contrib/postcss-loader/issues",
|
---|
10 | "funding": {
|
---|
11 | "type": "opencollective",
|
---|
12 | "url": "https://opencollective.com/webpack"
|
---|
13 | },
|
---|
14 | "main": "dist/cjs.js",
|
---|
15 | "engines": {
|
---|
16 | "node": ">= 12.13.0"
|
---|
17 | },
|
---|
18 | "scripts": {
|
---|
19 | "start": "npm run build -- -w",
|
---|
20 | "clean": "del-cli dist",
|
---|
21 | "prebuild": "npm run clean",
|
---|
22 | "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
---|
23 | "commitlint": "commitlint --from=master",
|
---|
24 | "security": "npm audit --production",
|
---|
25 | "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
|
---|
26 | "lint:js": "eslint --cache .",
|
---|
27 | "lint": "npm-run-all -l -p \"lint:**\"",
|
---|
28 | "test:only": "cross-env NODE_ENV=test jest",
|
---|
29 | "test:watch": "npm run test:only -- --watch",
|
---|
30 | "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
---|
31 | "pretest": "npm run lint",
|
---|
32 | "test": "npm run test:coverage",
|
---|
33 | "prepare": "husky install && npm run build",
|
---|
34 | "release": "standard-version"
|
---|
35 | },
|
---|
36 | "files": [
|
---|
37 | "dist"
|
---|
38 | ],
|
---|
39 | "peerDependencies": {
|
---|
40 | "postcss": "^7.0.0 || ^8.0.1",
|
---|
41 | "webpack": "^5.0.0"
|
---|
42 | },
|
---|
43 | "dependencies": {
|
---|
44 | "cosmiconfig": "^7.0.0",
|
---|
45 | "klona": "^2.0.4",
|
---|
46 | "semver": "^7.3.5"
|
---|
47 | },
|
---|
48 | "devDependencies": {
|
---|
49 | "@babel/cli": "^7.14.5",
|
---|
50 | "@babel/core": "^7.14.6",
|
---|
51 | "@babel/preset-env": "^7.14.5",
|
---|
52 | "@commitlint/cli": "^12.1.4",
|
---|
53 | "@commitlint/config-conventional": "^12.1.4",
|
---|
54 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
---|
55 | "babel-jest": "^27.0.2",
|
---|
56 | "cross-env": "^7.0.3",
|
---|
57 | "cssnano": "^5.0.6",
|
---|
58 | "del": "^6.0.0",
|
---|
59 | "del-cli": "^4.0.0",
|
---|
60 | "eslint": "^7.28.0",
|
---|
61 | "eslint-config-prettier": "^8.3.0",
|
---|
62 | "eslint-plugin-import": "^2.23.4",
|
---|
63 | "husky": "^7.0.0",
|
---|
64 | "jest": "^27.0.4",
|
---|
65 | "less": "^4.1.1",
|
---|
66 | "less-loader": "^10.0.0",
|
---|
67 | "lint-staged": "^11.0.0",
|
---|
68 | "memfs": "^3.2.2",
|
---|
69 | "midas": "^2.0.3",
|
---|
70 | "npm-run-all": "^4.1.5",
|
---|
71 | "postcss": "^8.3.1",
|
---|
72 | "postcss-dark-theme-class": "^0.5.2",
|
---|
73 | "postcss-import": "^14.0.2",
|
---|
74 | "postcss-js": "^3.0.3",
|
---|
75 | "postcss-nested": "^5.0.5",
|
---|
76 | "postcss-short": "^5.0.0",
|
---|
77 | "prettier": "^2.3.1",
|
---|
78 | "sass": "^1.35.1",
|
---|
79 | "sass-loader": "^12.1.0",
|
---|
80 | "standard-version": "^9.3.0",
|
---|
81 | "strip-ansi": "^6.0.0",
|
---|
82 | "sugarss": "^4.0.1",
|
---|
83 | "webpack": "^5.39.0"
|
---|
84 | },
|
---|
85 | "keywords": [
|
---|
86 | "css",
|
---|
87 | "postcss",
|
---|
88 | "postcss-runner",
|
---|
89 | "webpack",
|
---|
90 | "webpack-loader"
|
---|
91 | ]
|
---|
92 | }
|
---|