-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.87 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.87 KB
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
{
"name": "poops",
"description": "Straightforward, no-bullshit bundler for the web.",
"version": "1.2.2",
"license": "MIT",
"type": "module",
"main": "poops.js",
"repository": {
"type": "git",
"url": "git+https://github.com/stamat/poops.git"
},
"bin": {
"poops": "poops.js",
"💩": "poops.js"
},
"files": [
"poops.js",
"lib/",
"!lib/**/__tests__/"
],
"author": "Stamat <@stamat> (http://stamat.info)",
"homepage": "https://github.com/stamat/poops",
"private": false,
"keywords": [
"bundler",
"javascript",
"sass",
"nunjucks",
"liquid",
"esbuild",
"dart-sass",
"tailwindcss",
"toolchain-script",
"static-site-generator"
],
"peerDependencies": {
"postcss": "^8.0.0"
},
"peerDependenciesMeta": {
"postcss": {
"optional": true
}
},
"scripts": {
"build": "node ./poops.js -b",
"lint": "eslint ./poops.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest"
},
"dependencies": {
"argoyle": "^1.0.0",
"book-of-spells": "^1.0.32",
"chokidar": "^3.5.3",
"connect": "^3.7.0",
"dayjs": "^1.11.19",
"esbuild": "^0.25.0",
"glob": "^13.0.6",
"highlight.js": "^11.11.1",
"liquidjs": "^10.24.0",
"livereload": "^0.9.3",
"marked": "^9.0.3",
"nunjucks": "^3.2.4",
"portscanner": "^2.2.0",
"printstyle": "^1.0.0",
"sass": "^1.63.4",
"sass-path-resolver": "^1.0.2",
"sass-token-importer": "^1.0.0",
"serve-static": "^1.15.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@tailwindcss/postcss": "^4.2.1",
"eslint": "^9.39.3",
"jest": "^30.2.0",
"neostandard": "^0.12.2",
"postcss": "^8.5.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sulphuris": "^2.0.0",
"tailwindcss": "^4.2.1"
},
"overrides": {
"minimatch": ">=10.2.1"
}
}