forked from tawk/tawk-drupal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
20 lines (20 loc) · 827 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "tawk/tawk-drupal",
"description": "tawk.to Live Chat module for Drupal 7 CMS",
"type": "project",
"license": "GPLv3",
"require": {
"tawk/url-utils": "2.0.1"
},
"repositories": {
"tawk-url-utils": {
"type": "vcs",
"url": "https://github.com/tawk/tawk-url-utils.git"
}
},
"scripts": {
"build:prod": "composer install --no-dev",
"package": "composer run clean && mkdir -p ./tmp/tawktodrupal7 && cp -r ./css ./tmp/tawktodrupal7 && cp -r ./includes ./tmp/tawktodrupal7 && cp -r ./js ./tmp/tawktodrupal7 && cp -r ./vendor ./tmp/tawktodrupal7 && cp ./tawk_to.* ./tmp/tawktodrupal7 && cp README.md ./tmp/tawktodrupal7 && (cd ./tmp && zip -9 -rq ./tawktodrupal7.zip ./tawktodrupal7)",
"clean": "rm -rf ./tmp"
}
}