-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.42 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
{
"name": "document-library-lite",
"version": "1.2.0",
"description": "Document Library Lite.",
"main": "gulpfile.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "set BARN2_BUILD_ENV=production & wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "set BARN2_BUILD_ENV=development & wp-scripts start",
"test:e2e": "playwright test",
"test:unit": "wp-scripts test-unit-js",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"wp-env:update": "wp-env start --update",
"wp-env:clean": "wp-env clean all",
"translate": "potomatic",
"translate:dry-run": "potomatic --dry-run",
"make-mo": "wp i18n make-mo languages/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Barn2Plugins/document-library-lite.git"
},
"author": "Barn2 Plugins <support@barn2.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Barn2Plugins/document-library-lite/issues"
},
"homepage": "https://github.com/Barn2Plugins/document-library-lite#readme",
"devDependencies": {
"@barn2plugins/playwright-utils": "^0.2.1",
"@barn2plugins/webpack-config": "^2.0.0",
"@automattic/color-studio": "^2.5.0",
"@wordpress/base-styles": "^4.19.0",
"@wordpress/dependency-extraction-webpack-plugin": "^4.8.0",
"@wordpress/env": "^10.5.0",
"@wordpress/scripts": "^26.4.0",
"potomatic": "^1.0.0"
},
"barn2": {
"textDomain": "document-library-lite",
"tests": [
{
"name": "default",
"plugins": [
"."
],
"themes": [
],
"mappings": {
"wp-content/db.sql": "./tests/e2e/default/db.sql"
}
}
]
},
"dependencies": {
"@playwright/test": "^1.46.1",
"@floating-ui/dom": "^1.6.13"
}
}