forked from Automattic/wordpress-activitypub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.35 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.35 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
{
"name": "wordpress-activitypub",
"description": "The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.",
"repository": {
"type": "git",
"url": "git+https://github.com/automattic/wordpress-activitypub.git"
},
"author": {
"name": "Matthias Pfefferle",
"web": "https://notiz.blog"
},
"scripts": {
"dev": "wp-scripts start --experimental-modules",
"build": "wp-scripts format && wp-scripts build --experimental-modules",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"test:unit": "wp-scripts test-unit-js",
"test:unit:watch": "wp-scripts test-unit-js --watch",
"test:unit:debug": "wp-scripts --inspect-brk test-unit-js --runInBand --no-cache",
"test:e2e": "wp-scripts test-playwright --config tests/e2e/playwright.config.js",
"test:e2e:debug": "wp-scripts test-playwright --config tests/e2e/playwright.config.js --debug",
"env": "wp-env",
"env-start": "wp-env start",
"env-stop": "wp-env stop",
"env-test": "wp-env run tests-cli --env-cwd=\"wp-content/plugins/activitypub\" vendor/bin/phpunit",
"release": "node bin/release.js",
"prepare": "git config core.hooksPath .githooks"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/automattic/wordpress-activitypub/issues"
},
"homepage": "https://github.com/automattic/wordpress-activitypub#readme",
"devDependencies": {
"@playwright/test": "^1.56.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.4.3",
"@wordpress/api-fetch": "^7.32.0",
"@wordpress/block-editor": "^15.5.0",
"@wordpress/blocks": "^15.3.0",
"@wordpress/components": "^30.0.0",
"@wordpress/compose": "^7.32.0",
"@wordpress/core-data": "^7.22.0",
"@wordpress/data": "^10.0.0",
"@wordpress/dom-ready": "^4.0.0",
"@wordpress/e2e-test-utils-playwright": "^1.32.0",
"@wordpress/edit-post": "^8.32.0",
"@wordpress/editor": "^14.32.0",
"@wordpress/element": "^6.0.0",
"@wordpress/env": "^10.32.0",
"@wordpress/i18n": "^6.0.0",
"@wordpress/icons": "^10.10.0",
"@wordpress/interactivity": "^6.30.0",
"@wordpress/plugins": "^7.22.0",
"@wordpress/prettier-config": "^4.31.0",
"@wordpress/primitives": "^4.31.0",
"@wordpress/scripts": "^30.23.0",
"@wordpress/url": "^4.22.0",
"classnames": "^2.3.2",
"prettier": "npm:wp-prettier@^3.0.3"
}
}