-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "wp-local-media-proxy",
"version": "1.1.1",
"description": "Proxy images on a local development WordPress site from a remote server.",
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ndigitals/wp-local-media-proxy.git"
},
"keywords": [
"WordPress",
"media",
"proxy"
],
"author": "Tim Nolte <[email protected]>",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/ndigitals/wp-local-media-proxy/issues"
},
"homepage": "https://github.com/ndigitals/wp-local-media-proxy#readme",
"engines": {
"node": "12.18.3",
"npm": "6.14.8"
},
"devDependencies": {
"@floatwork/grunt-po2mo": "^0.3.0",
"@ndigitals/grunt-checkrepo": "^0.2.0",
"check-node-version": "~4.1.0",
"grunt": "^1.5.3",
"grunt-checkbranch": "^1.0.4",
"grunt-checktextdomain": "^1.0.1",
"grunt-cli": "1.4.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-gitinfo": "^0.1.9",
"grunt-shell": "^2.1.0",
"grunt-version": "~2.0.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "^2.0.0",
"load-grunt-tasks": "^3.5",
"node": "^12.21.0",
"npm": "6.14.12"
},
"scripts": {
"setup": "npm run setup:npm && npm run setup:composer",
"setup:npm": "npm install",
"setup:composer": "composer install",
"build": "npm run grunt build",
"release": "npm run grunt release",
"grunt": "node_modules/.bin/grunt",
"version": "npm run grunt version",
"version:bump": "npm version --no-git-tag-version",
"test": "npm run grunt test",
"i18n:check": "npm run grunt checktextdomain",
"i18n:make": "npm run grunt i18n",
"lint": "npm run lint:php",
"lint:php": "composer run-script lint",
"lint:php:fix": "composer run-script lint-fix",
"analyze": "npm run analyze:php",
"analyze:php": "composer run-script analyze"
}
}