-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.01 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@immonex/wp-free-plugin-core",
"description": "Shared basic functionality for immonex WordPress plugins",
"config": {
"libName": "immonex-wp-free-plugin-core"
},
"scripts": {
"pot": "bin/generate_pot.sh",
"copy-mo": "for LANG in de_DE_formal de_AT de_CH de_CH_informal; do find src -mindepth 1 -maxdepth 1 -type d -exec cp -n {}/languages/$npm_package_config_libName-de_DE.mo {}/languages/$npm_package_config_libName-$LANG.mo ';'; done",
"test:install": "bin/invoke_test_installer.sh",
"test": "vendor/phpunit/phpunit/phpunit -c tests/phpunit/plugin.xml",
"apidoc": "[ -f bin/phpdoc ] || bin/install-phpdoc.sh; bin/phpdoc run --sourcecode --template=clean --title='immonex WP Free Plugin Core'",
"apidoc:view": "node_modules/.bin/lws --stack lws-static lws-index -d apidoc -o",
"apidoc:delete": "rimraf --glob apidoc && rimraf --glob .tmp/apidoc"
},
"devDependencies": {
"lws": "^4.2.0",
"lws-index": "^3.1.1",
"lws-static": "^3.1.1",
"rimraf": "^6.1.3"
}
}