-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "t3-build",
"version": "3.1.1",
"description": "watcher and builder for typo3-cms",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/mxsteini/t3-build.git",
"bugs": "https://github.com/mxsteini/t3-build/issues",
"homepage": "https://www.michaelstein-itb.de",
"keywords": [
"TYPO3",
"watcher",
"builder"
],
"author": "Michael Stein",
"license": "ISC",
"bin": {
"t3-build": "bin/index.js"
},
"dependencies": {
"better-logging": "^5.0.0",
"browser-sync": "^2.29.3",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"dotenv": "^16.3.1",
"esbuild": "^0.18.17",
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"node-watch": "^0.7.3",
"npmlog": "^7.0.1",
"posthtml": "^0.16.6",
"posthtml-content": "^0.1.2",
"posthtml-modules": "^0.9.1",
"sass": "^1.83.0"
},
"type": "module",
"t3-build": {
"deph": {},
"sassConfig": {},
"addtionalWatcher": [
{
"pattern": "test",
"command": "echo 'test'"
}
],
"addtionalBuilder": [ "echo test", "echo test2" ]
}
}