-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.66 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
{
"name": "wp-feature-notifications",
"version": "0.1.0",
"description": "A notification center for WordPress.",
"keywords": [
"WordPress",
"notifications",
"dashboard"
],
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/WordPress/wp-feature-notifications/issues"
},
"homepage": "https://github.com/WordPress/wp-feature-notifications#readme",
"directories": {
"doc": "docs",
"test": "tests"
},
"files": [
"build/*",
"includes/*",
"readme.txt",
"wp-feature-notifications.php"
],
"workspaces": [
"./storybook"
],
"scripts": {
"start": "wp-scripts start",
"start:storybook": "npm run start --workspace=storybook",
"build": "wp-scripts build",
"build:storybook": "npm run build --workspace=storybook",
"php-install": "wp-env run composer 'composer --ignore-platform-req=php install'",
"packages-update": "wp-scripts packages-update",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style ./src",
"lint:js": "wp-scripts lint-js ./src",
"lint:md:docs": "wp-scripts lint-md-docs ./src",
"lint:pkg-json": "wp-scripts lint-pkg-json ./src",
"plugin-zip": "wp-scripts plugin-zip",
"test:js": "echo \"🚧 TEST JS: WE'LL THINK ABOUT IT LATER 🚧\" && exit 0",
"test:php": "wp-env run phpunit 'phpunit --configuration=/var/www/html/wp-content/plugins/wp-feature-notifications/phpunit.xml.dist'",
"test": "npm run test:php && npm run test:js",
"docGen": "npx docgen src/scripts/wp-notifications.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WordPress/wp-feature-notifications.git"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=10.2.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@wordpress/api-fetch": "^7.46.0",
"@wordpress/components": "^33.1.0",
"@wordpress/data": "^10.46.0",
"@wordpress/date": "^5.46.0",
"@wordpress/e2e-test-utils": "^11.34.0",
"@wordpress/element": "^6.46.0",
"@wordpress/env": "^11.6.0",
"@wordpress/escape-html": "^3.46.0",
"@wordpress/i18n": "^6.19.0",
"@wordpress/icons": "^13.1.0",
"@wordpress/keyboard-shortcuts": "^5.46.0",
"@wordpress/scripts": "^32.2.0",
"classnames": "^2.3.2",
"eslint": "^10.4.0",
"eslint-import-resolver-typescript": "^4.4.4",
"husky": "^9.1.7",
"jest-puppeteer": "^11.0.0",
"lint-staged": "^16.4.0",
"re-resizable": "^6.11.2",
"typescript": "^6.0.3"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"prettier": "@wordpress/prettier-config",
"stylelint": {
"extends": [
"@wordpress/stylelint-config"
]
}
}