1 | {
|
2 | "name": "css-loader",
|
3 | "version": "6.7.4",
|
4 | "description": "css loader module for webpack",
|
5 | "license": "MIT",
|
6 | "repository": "webpack-contrib/css-loader",
|
7 | "author": "Tobias Koppers @sokra",
|
8 | "homepage": "https://github.com/webpack-contrib/css-loader",
|
9 | "bugs": "https://github.com/webpack-contrib/css-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 | "validate:runtime": "es-check es5 \"dist/runtime/**/*.js\"",
|
22 | "prebuild": "npm run clean",
|
23 | "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
24 | "postbuild": "npm run validate:runtime",
|
25 | "commitlint": "commitlint --from=master",
|
26 | "security": "npm audit --production",
|
27 | "lint:prettier": "prettier --list-different .",
|
28 | "lint:js": "eslint --cache .",
|
29 | "lint:spelling": "cspell \"**/*.*\"",
|
30 | "lint": "npm-run-all -l -p \"lint:**\"",
|
31 | "fix:js": "npm run lint:js -- --fix",
|
32 | "fix:prettier": "npm run lint:prettier -- --write",
|
33 | "fix": "npm-run-all -l fix:js fix:prettier",
|
34 | "test:only": "cross-env NODE_ENV=test jest",
|
35 | "test:watch": "npm run test:only -- --watch",
|
36 | "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
37 | "pretest": "npm run lint",
|
38 | "test": "npm run test:coverage",
|
39 | "prepare": "husky install && npm run build",
|
40 | "release": "standard-version"
|
41 | },
|
42 | "files": [
|
43 | "dist"
|
44 | ],
|
45 | "peerDependencies": {
|
46 | "webpack": "^5.0.0"
|
47 | },
|
48 | "dependencies": {
|
49 | "icss-utils": "^5.1.0",
|
50 | "postcss": "^8.4.21",
|
51 | "postcss-modules-extract-imports": "^3.0.0",
|
52 | "postcss-modules-local-by-default": "^4.0.1",
|
53 | "postcss-modules-scope": "^3.0.0",
|
54 | "postcss-modules-values": "^4.0.0",
|
55 | "postcss-value-parser": "^4.2.0",
|
56 | "semver": "^7.3.8"
|
57 | },
|
58 | "devDependencies": {
|
59 | "@babel/cli": "^7.21.0",
|
60 | "@babel/core": "^7.21.4",
|
61 | "@babel/preset-env": "^7.21.4",
|
62 | "@commitlint/cli": "^16.3.0",
|
63 | "@commitlint/config-conventional": "^16.2.4",
|
64 | "@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
65 | "babel-jest": "^28.1.3",
|
66 | "cross-env": "^7.0.3",
|
67 | "cspell": "^6.31.1",
|
68 | "del": "^6.1.1",
|
69 | "del-cli": "^4.0.1",
|
70 | "es-check": "^7.1.0",
|
71 | "eslint": "^8.37.0",
|
72 | "eslint-config-prettier": "^8.8.0",
|
73 | "eslint-plugin-import": "^2.27.5",
|
74 | "file-loader": "^6.2.0",
|
75 | "husky": "^7.0.1",
|
76 | "jest": "^28.1.3",
|
77 | "jest-environment-jsdom": "^28.1.3",
|
78 | "less": "^4.1.3",
|
79 | "less-loader": "^10.0.1",
|
80 | "lint-staged": "^12.5.0",
|
81 | "memfs": "^3.4.13",
|
82 | "mini-css-extract-plugin": "^2.7.5",
|
83 | "npm-run-all": "^4.1.5",
|
84 | "postcss-loader": "^6.2.1",
|
85 | "postcss-preset-env": "^7.8.3",
|
86 | "prettier": "^2.8.7",
|
87 | "sass": "^1.60.0",
|
88 | "sass-loader": "^12.6.0",
|
89 | "standard-version": "^9.5.0",
|
90 | "strip-ansi": "^6.0.0",
|
91 | "style-loader": "^3.3.2",
|
92 | "stylus": "^0.56.0",
|
93 | "stylus-loader": "^6.1.0",
|
94 | "url-loader": "^4.1.1",
|
95 | "webpack": "^5.77.0"
|
96 | },
|
97 | "keywords": [
|
98 | "webpack",
|
99 | "css",
|
100 | "loader",
|
101 | "url",
|
102 | "import"
|
103 | ]
|
104 | }
|