UNPKG

2.5 kBJSONView Raw
1{
2 "name": "less-loader",
3 "version": "11.1.3",
4 "description": "A Less loader for webpack. Compiles Less to CSS.",
5 "license": "MIT",
6 "repository": "webpack-contrib/less-loader",
7 "author": "Johannes Ewald @jhnns",
8 "homepage": "https://github.com/webpack-contrib/less-loader",
9 "bugs": "https://github.com/webpack-contrib/less-loader/issues",
10 "funding": {
11 "type": "opencollective",
12 "url": "https://opencollective.com/webpack"
13 },
14 "main": "dist/cjs.js",
15 "engines": {
16 "node": ">= 14.15.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 --list-different .",
26 "lint:js": "eslint --cache .",
27 "lint:spelling": "cspell \"**/*.*\"",
28 "lint": "npm-run-all -l -p \"lint:**\"",
29 "fix:js": "npm run lint:js -- --fix",
30 "fix:prettier": "npm run lint:prettier -- --write",
31 "fix": "npm-run-all -l fix:js fix:prettier",
32 "test:only": "cross-env NODE_ENV=test jest",
33 "test:watch": "npm run test:only -- --watch",
34 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
35 "pretest": "npm run lint",
36 "test": "npm run test:coverage",
37 "prepare": "husky install && npm run build",
38 "release": "standard-version"
39 },
40 "files": [
41 "dist"
42 ],
43 "peerDependencies": {
44 "less": "^3.5.0 || ^4.0.0",
45 "webpack": "^5.0.0"
46 },
47 "devDependencies": {
48 "@babel/cli": "^7.21.5",
49 "@babel/core": "^7.22.1",
50 "@babel/preset-env": "^7.22.4",
51 "@commitlint/cli": "^17.6.5",
52 "@commitlint/config-conventional": "^17.6.5",
53 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
54 "babel-jest": "^29.5.0",
55 "cross-env": "^7.0.3",
56 "cspell": "^6.31.1",
57 "del": "^6.1.1",
58 "del-cli": "^4.0.1",
59 "eslint": "^8.41.0",
60 "eslint-config-prettier": "^8.8.0",
61 "eslint-plugin-import": "^2.27.5",
62 "husky": "^8.0.3",
63 "jest": "^29.5.0",
64 "less": "^4.1.3",
65 "less-plugin-glob": "^2.0.2",
66 "lint-staged": "^13.2.2",
67 "memfs": "^3.5.1",
68 "npm-run-all": "^4.1.5",
69 "prettier": "^2.8.8",
70 "standard-version": "^9.3.1",
71 "strip-ansi": "^7.1.0",
72 "webpack": "^5.85.0"
73 },
74 "keywords": [
75 "webpack",
76 "loader",
77 "less",
78 "lesscss",
79 "less.js",
80 "css",
81 "preprocessor"
82 ]
83}