UNPKG

2.64 kBJSONView Raw
1{
2 "name": "stylus-loader",
3 "version": "4.3.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": ">= 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 \"{**/*,*}.{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": "npm run build",
34 "release": "standard-version",
35 "defaults": "webpack-defaults"
36 },
37 "files": [
38 "dist"
39 ],
40 "peerDependencies": {
41 "stylus": ">=0.52.4",
42 "webpack": "^4.0.0 || ^5.0.0"
43 },
44 "dependencies": {
45 "fast-glob": "^3.2.4",
46 "klona": "^2.0.4",
47 "loader-utils": "^2.0.0",
48 "normalize-path": "^3.0.0",
49 "schema-utils": "^3.0.0"
50 },
51 "devDependencies": {
52 "@babel/cli": "^7.12.1",
53 "@babel/core": "^7.12.3",
54 "@babel/preset-env": "^7.12.1",
55 "@commitlint/cli": "^11.0.0",
56 "@commitlint/config-conventional": "^11.0.0",
57 "@webpack-contrib/defaults": "^6.3.0",
58 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
59 "babel-eslint": "^10.1.0",
60 "babel-jest": "^26.6.3",
61 "benchmark": "^2.1.4",
62 "bootstrap-styl": "^5.0.9",
63 "cross-env": "^7.0.2",
64 "css-loader": "^5.0.1",
65 "del": "^6.0.0",
66 "del-cli": "^3.0.1",
67 "eslint": "^7.13.0",
68 "eslint-config-prettier": "^6.15.0",
69 "eslint-plugin-import": "^2.22.1",
70 "husky": "^4.3.0",
71 "jest": "^26.6.3",
72 "lint-staged": "^10.5.1",
73 "memfs": "^3.2.0",
74 "nib": "^1.1.2",
75 "npm-run-all": "^4.1.5",
76 "prettier": "^2.1.2",
77 "raw-loader": "^4.0.2",
78 "standard-version": "^9.0.0",
79 "style-loader": "^2.0.0",
80 "stylus": "^0.54.8",
81 "webpack": "^5.4.0"
82 },
83 "keywords": [
84 "webpack",
85 "loader",
86 "stylus"
87 ]
88}