This repository has been archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "@absolunet/pleaz",
"version": "1.1.1",
"description": "Pleaz (Project Local Environment from A to Z), a more efficient solution to develop applications.",
"definition": "",
"homepage": "https://github.com/absolunet/pleaz",
"author": {
"name": "Absolunet",
"url": "https://absolunet.com"
},
"keywords": [
"cli",
"docker",
"php",
"nginx",
"local",
"development",
"magento"
],
"license": "MIT",
"repository": {
"url": "git://github.com/absolunet/pleaz.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/absolunet/pleaz/issues"
},
"bin": {
"pleaz": "ioc"
},
"engines": {
"node": ">= 14"
},
"main": "dist/node/index.js",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "node test --scope=all",
"test:standards": "node test --scope=standards",
"test:unit": "node test --scope=unit",
"test:feature": "node test --scope=feature",
"test:integration": "node test --scope=integration",
"test:endtoend": "node test --scope=endtoend",
"manager:install": "node manager --task=install",
"manager:outdated": "node manager --task=outdated",
"manager:build": "node manager --task=build",
"manager:watch": "node manager --task=watch",
"manager:documentation": "node manager --task=documentation",
"manager:prepare": "node manager --task=prepare",
"manager:rebuild": "node manager --task=rebuild",
"manager:publish": "node manager --task=publish",
"manager:publish:unsafe": "node manager --task=publish:unsafe"
},
"devDependencies": {
"@absolunet/manager": "2.1.0",
"@absolunet/tester": "4.2.0"
},
"dependencies": {
"@absolunet/ioc": "^2.1.0",
"@absolunet/private-registry": "^2.0.0"
}
}