-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.75 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.75 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
{
"name": "setlist-player",
"version": "0.1.0",
"description": "Display YouTube video setlists using a customizable block.",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"format": "wp-scripts format && npm run format:php",
"format:php": "composer run phpcbf",
"lint": "(npm run lint:js || true) && (npm run lint:css || true) && (npm run lint:php || true)",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer run phpcs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages:update": "npm update && composer update",
"test": "npm run test:js && npm run test:php",
"test:js": "wp-scripts test-unit-js --passWithNoTests",
"test:clean": "rm -rf /tmp/wordpress /tmp/wordpress-tests-lib /tmp/wp-latest.json",
"test:php": "WP_TESTS_DIR=/tmp/wordpress-tests-lib vendor/bin/phpunit --testdox",
"test:php:build": "npm run build && npm run test:php",
"test:setup": "npm run test:clean && yes | WP_TESTS_DIR=/tmp/wordpress-tests-lib WP_CORE_DIR=/tmp/wordpress bin/install-wp-tests.sh wp_test root '' localhost latest",
"clean": "rm -rf build/*",
"plugin-zip": "wp-scripts plugin-zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ironprogrammer/setlist-player.git"
},
"homepage": "https://github.com/ironprogrammer/setlist-player#readme",
"bugs": {
"url": "https://github.com/ironprogrammer/setlist-player/issues"
},
"directories": {
"test": "tests"
},
"keywords": [],
"author": "",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@wordpress/scripts": "^30.25.0"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2"
}
}