UNPKG

2.89 kBJSONView Raw
1{
2 "name": "stylus-loader",
3 "version": "8.1.0",
4 "description": "Stylus loader for webpack",
5 "license": "MIT",
6 "repository": "webpack-contrib/stylus-loader",
7 "author": "Kyle Robinson Young <kyle@dontkry.com> (http://dontkry.com)",
8 "homepage": "https://github.com/webpack-contrib/stylus-loader",
9 "bugs": "https://github.com/webpack-contrib/stylus-loader/issues",
10 "funding": {
11 "type": "opencollective",
12 "url": "https://opencollective.com/webpack"
13 },
14 "main": "dist/cjs.js",
15 "engines": {
16 "node": ">= 18.12.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 --cache --list-different .",
26 "lint:js": "eslint --cache .",
27 "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
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 "@rspack/core": "0.x || 1.x",
45 "stylus": ">=0.52.4",
46 "webpack": "^5.0.0"
47 },
48 "peerDependenciesMeta": {
49 "@rspack/core": {
50 "optional": true
51 },
52 "webpack": {
53 "optional": true
54 }
55 },
56 "dependencies": {
57 "fast-glob": "^3.3.2",
58 "normalize-path": "^3.0.0"
59 },
60 "devDependencies": {
61 "@babel/cli": "^7.23.4",
62 "@babel/core": "^7.23.7",
63 "@babel/eslint-parser": "^7.23.3",
64 "@babel/preset-env": "^7.23.7",
65 "@commitlint/cli": "^18.4.4",
66 "@commitlint/config-conventional": "^18.4.4",
67 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
68 "babel-jest": "^29.7.0",
69 "benchmark": "^2.1.4",
70 "bootstrap-styl": "^5.0.9",
71 "cross-env": "^7.0.3",
72 "cspell": "^8.3.2",
73 "css-loader": "^6.8.1",
74 "del": "^7.1.0",
75 "del-cli": "^5.1.0",
76 "eslint": "^8.56.0",
77 "eslint-config-prettier": "^9.1.0",
78 "eslint-plugin-import": "^2.29.1",
79 "husky": "^8.0.3",
80 "jest": "^29.7.0",
81 "lint-staged": "^15.2.0",
82 "memfs": "^4.6.0",
83 "nib": "^1.1.2",
84 "npm-run-all": "^4.1.5",
85 "prettier": "^3.2.2",
86 "raw-loader": "^4.0.2",
87 "standard-version": "^9.3.2",
88 "style-loader": "^3.3.3",
89 "stylus": "^0.62.0",
90 "webpack": "^5.89.0"
91 },
92 "keywords": [
93 "webpack",
94 "loader",
95 "stylus"
96 ]
97}