-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
27 lines (27 loc) · 1 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
{
"name": "espocrm-ext-{@nameHyphen}",
"version": "0.0.1",
"description": "",
"scripts": {
"sa": "node build --copy && node build --composer-install && php site/vendor/bin/phpstan",
"unit-tests": "node build --copy && node build --composer-install && cd site && php vendor/bin/phpunit tests/unit/Espo/Modules/{ModuleName}",
"integration-tests": "node build --copy && node build --composer-install && cd site && php vendor/bin/phpunit tests/integration/Espo/Modules/{ModuleName}",
"copy": "node build --copy",
"composer-install": "node build --composer-install",
"extension": "node build --extension",
"clear-cache": "php site/clear_cache.php",
"rebuild": "node build --rebuild",
"all": "node build --all",
"prepare-test": "node build --prepare-test"
},
"type": "module",
"author": "{@author}",
"dependencies": {
"espo-extension-tools": "github:espocrm/extension-tools#0.3.2",
"fs-extra": "^9.0.0"
},
"engines": {
"npm": ">=7",
"node": ">=15"
}
}