This repository has been archived by the owner on Feb 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.68 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
{
"name": "skaut-google-drive-documents",
"version": "1.0.0",
"description": "A WordPress plugin to display and edit documents using Google Drive as file storage",
"keywords": [
"wordpress",
"skaut",
"google",
"drive"
],
"homepage": "https://github.com/skaut/skaut-google-drive-documents#readme",
"bugs": {
"url": "https://github.com/skaut/skaut-google-drive-documents/issues"
},
"license": "MIT",
"author": "Kristian Kosorin",
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/skaut-google-drive-documents.git"
},
"scripts": {
"build": "gulp build",
"lint:css:stylelint": "stylelint src/**/*.css",
"lint:css": "run-s -c lint:css:*",
"lint:php:phan": "export PHAN_DISABLE_XDEBUG_WARN=1; vendor/bin/phan",
"lint:php:phpcs": "vendor/bin/phpcs",
"lint:php:phpmd": "vendor/bin/phpmd src text phpmd.xml",
"lint:php": "run-s -c lint:php:*",
"lint:js:eslint": "eslint src/**/*.js gulpfile.js",
"lint:js": "run-s -c lint:js:*",
"lint": "run-s -c lint:*"
},
"dependencies": {
"composer": "^4.1.0"
},
"devDependencies": {
"@wordpress/browserslist-config": "^3.0.1",
"@wordpress/eslint-plugin": "^8.0.2",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.20.1",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-replace": "^1.0.0",
"merge-stream": "^2.0.0",
"npm-run-all": "^4.1.5",
"stylelint": "^13.9.0",
"stylelint-config-wordpress": "^17.0.0",
"stylelint-no-unsupported-browser-features": "^4.1.4"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}