-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
84 lines (84 loc) · 2.51 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
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
{
"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": "jest",
"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 install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WordPress/wp-feature-notifications.git"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@wordpress/api-fetch": "^6.44.0",
"@wordpress/components": "^25.13.0",
"@wordpress/data": "^9.17.0",
"@wordpress/date": "^4.47.0",
"@wordpress/e2e-test-utils": "^10.18.0",
"@wordpress/env": "^8.13.0",
"@wordpress/escape-html": "^2.47.0",
"@wordpress/eslint-plugin": "^17.4.0",
"@wordpress/i18n": "^4.47.0",
"@wordpress/icons": "^9.38.0",
"@wordpress/keyboard-shortcuts": "^4.24.0",
"@wordpress/scripts": "^26.18.0",
"classnames": "^2.3.2",
"eslint-import-resolver-typescript": "^3.6.1",
"husky": "^8.0.3",
"jest-puppeteer": "^9.0.1",
"lint-staged": "^15.1.0",
"prettier": "npm:wp-prettier@^3.0.3",
"re-resizable": "^6.9.11",
"typescript": "^5.3.2"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}