forked from Nullcorps/woocommerce-gateway-bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.91 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "bh-wp-bitcoin-gateway",
"version": "2.0.0",
"description": "Bitcoin payment gateway",
"main": "index.js",
"scripts": {
"docker:down": "npx wc-e2e docker:down",
"docker:ssh": "npx wc-e2e docker:ssh",
"docker:up": "npx wc-e2e docker:up",
"test:e2e": "npx wc-e2e test:e2e",
"test:e2e-debug": "npx wc-e2e test:e2e-debug",
"test:e2e-dev": "npx wc-e2e test:e2e-dev",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"start": "wp-scripts start",
"build": "wp-scripts build",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "wp-scripts lint-style --fix",
"format": "wp-scripts format",
"format:js": "wp-scripts format-js",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"lint:staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrianHenryIE/bh-wp-bitcoin-gateway.git"
},
"author": "BrianHenryIE",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/BrianHenryIE/bh-wp-bitcoin-gateway/issues"
},
"homepage": "https://github.com/BrianHenryIE/bh-wp-bitcoin-gateway#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.28",
"@playwright/test": "^1.58",
"@testing-library/jest-dom": "^6.9",
"@testing-library/react": "^16.3",
"@testing-library/user-event": "^14.6",
"@types/jest": "^30.0",
"@types/jquery": "^3.5",
"@types/node": "^20.0",
"@types/react": "^18.3",
"@types/react-dom": "^18.3",
"@types/wordpress__block-editor": "^15.0",
"@typescript-eslint/eslint-plugin": "^8.54",
"@typescript-eslint/parser": "^8.55",
"@woocommerce/dependency-extraction-webpack-plugin": "^4.0",
"@wordpress/block-editor": "^15.12",
"@wordpress/dependency-extraction-webpack-plugin": "^6.39.0",
"@wordpress/e2e-test-utils": "^11.34",
"@wordpress/e2e-test-utils-playwright": "^1.39",
"@wordpress/env": "^11.0.0",
"@wordpress/scripts": "^31.4",
"@wordpress/stylelint-config": "^23.31",
"dotenv": "^17.3",
"eslint-plugin-import": "^2.32",
"eslint-plugin-jest": "^29.14",
"eslint-plugin-jsx-a11y": "^6.10",
"eslint-plugin-react": "^7.37",
"eslint-plugin-react-hooks": "^7.0",
"jest": "^30.2",
"jest-environment-jsdom": "^30.2",
"lint-staged": "^16.2",
"stylelint": "^16.26",
"stylelint-scss": "^6.14",
"ts-jest": "^29.4",
"typescript": "^5.9"
},
"dependencies": {
"@wordpress/components": "^32.1",
"config": "^4.2",
"react": "^18.3",
"react-dom": "^18.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"wp-scripts lint-js --fix",
"wp-scripts format-js"
],
"*.{css,scss,sass}": [
"wp-scripts lint-style --fix"
],
"*.{json,yml,yaml,md}": [
"wp-scripts format"
]
}
}