85 lines
2.5 KiB
JSON
85 lines
2.5 KiB
JSON
{
|
|
"name": "stylus-loader",
|
|
"version": "6.1.0",
|
|
"description": "Stylus loader for webpack",
|
|
"license": "MIT",
|
|
"repository": "webpack-contrib/stylus-loader",
|
|
"author": "Kyle Robinson Young <kyle@dontkry.com> (http://dontkry.com)",
|
|
"homepage": "https://github.com/webpack-contrib/stylus-loader",
|
|
"bugs": "https://github.com/webpack-contrib/stylus-loader/issues",
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/webpack"
|
|
},
|
|
"main": "dist/cjs.js",
|
|
"engines": {
|
|
"node": ">= 12.13.0"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run build -- -w",
|
|
"clean": "del-cli dist",
|
|
"prebuild": "npm run clean",
|
|
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
|
"commitlint": "commitlint --from=master",
|
|
"security": "npm audit --production",
|
|
"lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
|
|
"lint:js": "eslint --cache .",
|
|
"lint": "npm-run-all -l -p \"lint:**\"",
|
|
"test:only": "cross-env NODE_ENV=test jest",
|
|
"test:watch": "npm run test:only -- --watch",
|
|
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
|
"pretest": "npm run lint",
|
|
"test": "npm run test:coverage",
|
|
"prepare": "husky install && npm run build",
|
|
"release": "standard-version"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"peerDependencies": {
|
|
"stylus": ">=0.52.4",
|
|
"webpack": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"fast-glob": "^3.2.5",
|
|
"klona": "^2.0.4",
|
|
"normalize-path": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.14.5",
|
|
"@babel/core": "^7.14.5",
|
|
"@babel/preset-env": "^7.14.5",
|
|
"@commitlint/cli": "^12.1.4",
|
|
"@commitlint/config-conventional": "^12.1.4",
|
|
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-jest": "^27.0.2",
|
|
"benchmark": "^2.1.4",
|
|
"bootstrap-styl": "^5.0.9",
|
|
"cross-env": "^7.0.3",
|
|
"css-loader": "^5.2.6",
|
|
"del": "^6.0.0",
|
|
"del-cli": "^3.0.1",
|
|
"eslint": "^7.28.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"husky": "^6.0.0",
|
|
"jest": "^27.0.4",
|
|
"lint-staged": "^11.0.0",
|
|
"memfs": "^3.2.2",
|
|
"nib": "^1.1.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.3.1",
|
|
"raw-loader": "^4.0.2",
|
|
"standard-version": "^9.3.0",
|
|
"style-loader": "^2.0.0",
|
|
"stylus": "^0.54.8",
|
|
"webpack": "^5.38.1"
|
|
},
|
|
"keywords": [
|
|
"webpack",
|
|
"loader",
|
|
"stylus"
|
|
]
|
|
}
|