-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "@wcpos/woocommerce-pos",
"version": "1.7.1",
"description": "A simple front-end for taking WooCommerce orders at the Point of Sale.",
"main": "index.js",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"wp-env": "wp-env",
"start": "wp-env start --xdebug=debug --debug",
"stop": "wp-env stop",
"cli": "wp-env run cli",
"wp": "wp-env run cli wp",
"lint:php": "composer run lint-report | cs2pr",
"lint": "run-s lint:*",
"pretest": "wp-env start --xdebug=coverage && wp-env run cli --env-cwd='wp-content/plugins/woocommerce-pos' composer install",
"test:unit:php": "wp-env run cli -- wp plugin activate woocommerce && wp-env run --env-cwd='wp-content/plugins/woocommerce-pos' tests-cli -- vendor/bin/phpunit -c .phpunit.xml.dist --verbose --log-junit phpunit.xml",
"test:unit": "run-s test:unit:*",
"test": "run-s test:*",
"build:docs": "jsdoc -c hookdoc-conf.json",
"prepare": "husky install",
"settings": "yarn workspace @wcpos/settings",
"analytics": "yarn workspace @wcpos/analytics",
"build:js": "yarn workspace @wcpos/settings build && yarn workspace @wcpos/analytics build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wcpos/woocommerce-pos.git"
},
"keywords": [
"wordpress",
"woocommerce",
"ecommerce",
"point-of-sale"
],
"author": "kilbot",
"license": "ISC",
"bugs": {
"url": "https://github.com/wcpos/woocommerce-pos/issues"
},
"homepage": "https://wcpos.com",
"devDependencies": {
"@wordpress/babel-plugin-makepot": "6.0.0",
"@wordpress/env": "10.0.0",
"husky": "9.0.11",
"jsdoc": "^4.0.3",
"npm-run-all": "4.1.5",
"taffydb": "^2.7.3",
"wp-hookdoc": "0.2.0"
},
"packageManager": "[email protected]",
"eslintConfig": {
"extends": "@wcpos/eslint-config"
}
}