-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "stylus-supremacy",
"description": "Make your Stylus files look great again.",
"version": "4.0.0",
"author": {
"name": "Anantachai Saothong",
"email": "thisismanta@gmail.com"
},
"keywords": [
"stylus",
"css",
"format",
"pretty",
"beautify"
],
"homepage": "https://thisismanta.github.io/stylus-supremacy",
"repository": {
"type": "git",
"url": "git+https://github.com/ThisIsManta/stylus-supremacy.git"
},
"bugs": "https://github.com/ThisIsManta/stylus-supremacy/issues",
"bin": {
"stylus-supremacy": "./edge/commandLineInterface.js"
},
"main": "./edge/index.js",
"types": "./edge/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node ./test/runner.js",
"test-watch": "nodemon --watch edge --watch spec --ext js,json,styl --ignore \"spec/*/*-debugging.json\" --ignore \"spec/*/*-formatted.styl\" ./test/runner.js",
"docs": "node edge/browserDemoBuilder.js && node edge/reviseDocumentation.js && node edge/revisePreCommitHook.js",
"version": "npm run docs && node ./edge/reviseTypeDefinition.js && git add --all && npm publish"
},
"devDependencies": {
"@thisismanta/semantic-version": "^9.1.0",
"@types/stylus": "^0.48.42",
"esbuild": "^0.23.1",
"jasmine": "^5.2.0",
"lefthook": "^1.7.14",
"nodemon": "^3.1.4"
},
"dependencies": {
"glob": "^10.4.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"stylint": "^2.0.0",
"stylus": "^0.63.0"
},
"overrides": {
"mout": "1.2.4",
"yargs-parser": "5.0.1"
}
}