source: trip-planner-front/node_modules/stylus-loader/package.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.5 KB
Line 
1{
2 "name": "stylus-loader",
3 "version": "6.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": ">= 12.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 --production",
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": "husky install && npm run build",
34 "release": "standard-version"
35 },
36 "files": [
37 "dist"
38 ],
39 "peerDependencies": {
40 "stylus": ">=0.52.4",
41 "webpack": "^5.0.0"
42 },
43 "dependencies": {
44 "fast-glob": "^3.2.5",
45 "klona": "^2.0.4",
46 "normalize-path": "^3.0.0"
47 },
48 "devDependencies": {
49 "@babel/cli": "^7.14.5",
50 "@babel/core": "^7.14.5",
51 "@babel/preset-env": "^7.14.5",
52 "@commitlint/cli": "^12.1.4",
53 "@commitlint/config-conventional": "^12.1.4",
54 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
55 "babel-eslint": "^10.1.0",
56 "babel-jest": "^27.0.2",
57 "benchmark": "^2.1.4",
58 "bootstrap-styl": "^5.0.9",
59 "cross-env": "^7.0.3",
60 "css-loader": "^5.2.6",
61 "del": "^6.0.0",
62 "del-cli": "^3.0.1",
63 "eslint": "^7.28.0",
64 "eslint-config-prettier": "^8.3.0",
65 "eslint-plugin-import": "^2.23.4",
66 "husky": "^6.0.0",
67 "jest": "^27.0.4",
68 "lint-staged": "^11.0.0",
69 "memfs": "^3.2.2",
70 "nib": "^1.1.2",
71 "npm-run-all": "^4.1.5",
72 "prettier": "^2.3.1",
73 "raw-loader": "^4.0.2",
74 "standard-version": "^9.3.0",
75 "style-loader": "^2.0.0",
76 "stylus": "^0.54.8",
77 "webpack": "^5.38.1"
78 },
79 "keywords": [
80 "webpack",
81 "loader",
82 "stylus"
83 ]
84}
Note: See TracBrowser for help on using the repository browser.