UNPKG

2.46 kBJSONView Raw
1{
2 "name": "less-loader",
3 "version": "6.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": ">= 10.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",
25 "lint:prettier": "prettier --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": "npm run build",
34 "release": "standard-version",
35 "defaults": "webpack-defaults"
36 },
37 "files": [
38 "dist"
39 ],
40 "peerDependencies": {
41 "webpack": "^4.0.0 || ^5.0.0"
42 },
43 "dependencies": {
44 "clone": "^2.1.2",
45 "less": "^3.11.3",
46 "loader-utils": "^2.0.0",
47 "schema-utils": "^2.7.0"
48 },
49 "devDependencies": {
50 "@babel/cli": "^7.10.3",
51 "@babel/core": "^7.10.3",
52 "@babel/preset-env": "^7.10.3",
53 "@commitlint/cli": "^9.0.1",
54 "@commitlint/config-conventional": "^9.0.1",
55 "@webpack-contrib/defaults": "^6.3.0",
56 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
57 "babel-jest": "^26.0.1",
58 "cross-env": "^7.0.2",
59 "del": "^5.1.0",
60 "del-cli": "^3.0.1",
61 "eslint": "^7.3.0",
62 "eslint-config-prettier": "^6.11.0",
63 "eslint-plugin-import": "^2.21.2",
64 "eslint-plugin-prettier": "^3.1.4",
65 "husky": "^4.2.5",
66 "inspect-loader": "^1.0.0",
67 "jest": "^26.0.1",
68 "lint-staged": "^10.2.11",
69 "memfs": "^3.2.0",
70 "npm-run-all": "^4.1.5",
71 "prettier": "^2.0.5",
72 "standard-version": "^8.0.0",
73 "strip-ansi": "^6.0.0",
74 "webpack": "^4.43.0"
75 },
76 "keywords": [
77 "webpack",
78 "loader",
79 "less",
80 "lesscss",
81 "less.js",
82 "css",
83 "preprocessor"
84 ]
85}