-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
97 lines (97 loc) · 2.82 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "stylus-loader",
"version": "8.1.1",
"description": "Stylus loader for webpack",
"license": "MIT",
"repository": "webpack-contrib/stylus-loader",
"author": "Kyle Robinson Young <[email protected]> (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": ">= 18.12.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 --cache --list-different .",
"lint:js": "eslint --cache .",
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"lint": "npm-run-all -l -p \"lint:**\"",
"fix:js": "npm run lint:js -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"fix": "npm-run-all -l fix:js fix:prettier",
"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 && npm run build",
"release": "standard-version"
},
"files": [
"dist"
],
"peerDependencies": {
"@rspack/core": "0.x || 1.x",
"stylus": ">=0.52.4",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
},
"webpack": {
"optional": true
}
},
"dependencies": {
"fast-glob": "^3.3.2",
"normalize-path": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"babel-jest": "^29.7.0",
"benchmark": "^2.1.4",
"bootstrap-styl": "^5.0.9",
"cross-env": "^7.0.3",
"cspell": "^8.10.0",
"css-loader": "^6.10.0",
"del": "^7.1.0",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"memfs": "^4.9.3",
"nib": "^1.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"raw-loader": "^4.0.2",
"standard-version": "^9.3.2",
"style-loader": "^3.3.3",
"stylus": "^0.62.0",
"webpack": "^5.92.1"
},
"keywords": [
"webpack",
"loader",
"stylus"
]
}