-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathextra-with-custom-script.json
More file actions
43 lines (43 loc) · 936 Bytes
/
Copy pathextra-with-custom-script.json
File metadata and controls
43 lines (43 loc) · 936 Bytes
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
{
"name": "neronmoon/scriptsdev-test",
"description": "Scripts-dev behaviour for Composer",
"keywords": ["dev", "scripts", "composer", "commands", "commands execution"],
"homepage": "https://github.com/neronmoon/scriptsdev",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Vitaliy Krasnoperov",
"email": "alistar.neron@gmail.com"
}
],
"repositories": [
{
"type": "path",
"url": "<PLUGIN_PATH>"
}
],
"require": {
"neronmoon/scriptsdev": "*@dev"
},
"extra": {
"scripts-dev": {
"post-update-cmd": "echo SCRIPTSDEV RULEZ",
"post-install-cmd": "echo SCRIPTSDEV RULEZ"
}
},
"scripts": {
"test-update": [
"composer update"
],
"test-update-no-dev": [
"composer update --no-dev"
],
"test-install": [
"composer install"
],
"test-install-no-dev": [
"composer install --no-dev"
]
}
}