Changeset 50204 for branches/4.7/package.json
- Timestamp:
- 02/05/2021 04:12:00 AM (5 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
package.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/package.json
r49532 r50204 1 1 { 2 "name": "WordPress", 3 "version": "4.7.19", 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 "repository": { 6 "type": "svn", 7 "url": "https://develop.svn.wordpress.org/trunk" 8 }, 9 "engines": { 10 "node": "6.9.1" 11 }, 12 "author": "The WordPress Contributors", 13 "license": "GPL-2.0+", 14 "devDependencies": { 15 "autoprefixer": "^6.5.1", 16 "dotenv": "^8.2.0", 17 "dotenv-expand": "^5.1.0", 18 "grunt": "~0.4.5", 19 "grunt-browserify": "~5.0.0", 20 "grunt-cli": "0.1.13", 21 "grunt-contrib-clean": "~1.0.0", 22 "grunt-contrib-compress": "~1.3.0", 23 "grunt-contrib-concat": "~1.0.0", 24 "grunt-contrib-copy": "~1.0.0", 25 "grunt-contrib-cssmin": "~1.0.2", 26 "grunt-contrib-imagemin": "~1.0.0", 27 "grunt-contrib-jshint": "~1.0.0", 28 "grunt-contrib-qunit": "^1.2.0", 29 "grunt-contrib-uglify": "~2.0.0", 30 "grunt-contrib-watch": "~1.0.0", 31 "grunt-includes": "~0.5.1", 32 "grunt-jsvalidate": "~0.2.2", 33 "grunt-legacy-util": "^0.2.0", 34 "grunt-patch-wordpress": "~0.4.2", 35 "grunt-postcss": "~0.7.1", 36 "grunt-rtlcss": "~2.0.1", 37 "grunt-sass": "~1.2.1", 38 "matchdep": "~1.0.0", 39 "wait-on": "~3.2.0" 40 }, 41 "scripts": { 42 "build": "grunt build", 43 "build:dev": "grunt build --dev", 44 "dev": "grunt watch --dev", 45 "test": "grunt test", 46 "watch": "grunt watch", 47 "grunt": "grunt", 48 "env:start": "node ./tools/local-env/scripts/start.js", 49 "env:stop": "node ./tools/local-env/scripts/docker.js down", 50 "env:restart": "npm run env:stop && npm run env:start", 51 "env:clean": "node ./tools/local-env/scripts/docker.js down -v --remove-orphans", 52 "env:reset": "node ./tools/local-env/scripts/docker.js down --rmi all -v --remove-orphans", 53 "env:install": "node ./tools/local-env/scripts/install.js", 54 "env:cli": "node ./tools/local-env/scripts/docker.js run cli", 55 "env:logs": "node ./tools/local-env/scripts/docker.js logs", 56 "env:pull": "node ./tools/local-env/scripts/docker.js pull", 57 "test:php": "node ./tools/local-env/scripts/docker.js run --rm phpunit phpunit" 58 } 2 "name": "WordPress", 3 "version": "4.7.19", 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 "repository": { 6 "type": "svn", 7 "url": "https://develop.svn.wordpress.org/trunk" 8 }, 9 "engines": { 10 "node": ">=14.15.0", 11 "npm": ">=6.14.8" 12 }, 13 "author": "The WordPress Contributors", 14 "license": "GPL-2.0+", 15 "browserslist": [ 16 "Android >= 2.1", 17 "Chrome >= 21", 18 "Edge >= 12", 19 "Explorer >= 7", 20 "Firefox >= 17", 21 "Opera >= 12.1", 22 "Safari >= 6.0" 23 ], 24 "devDependencies": { 25 "autoprefixer": "^9.8.6", 26 "dotenv": "^8.2.0", 27 "dotenv-expand": "^5.1.0", 28 "grunt": "~1.3.0", 29 "grunt-browserify": "~5.3.0", 30 "grunt-contrib-clean": "~2.0.0", 31 "grunt-contrib-compress": "~2.0.0", 32 "grunt-contrib-concat": "1.0.1", 33 "grunt-contrib-copy": "~1.0.0", 34 "grunt-contrib-cssmin": "~3.0.0", 35 "grunt-contrib-imagemin": "~4.0.0", 36 "grunt-contrib-jshint": "3.0.0", 37 "grunt-contrib-qunit": "^4.0.0", 38 "grunt-contrib-uglify": "~5.0.0", 39 "grunt-contrib-watch": "~1.1.0", 40 "grunt-includes": "~1.1.0", 41 "grunt-jsvalidate": "~0.2.2", 42 "grunt-legacy-util": "^2.0.0", 43 "grunt-patch-wordpress": "~3.0.0", 44 "grunt-postcss": "~0.9.0", 45 "grunt-rtlcss": "~2.0.2", 46 "grunt-sass": "~3.1.0", 47 "matchdep": "~2.0.0", 48 "sass": "^1.32.6", 49 "wait-on": "~5.2.1" 50 }, 51 "scripts": { 52 "build": "grunt build", 53 "build:dev": "grunt build --dev", 54 "dev": "grunt watch --dev", 55 "test": "grunt test", 56 "watch": "grunt watch", 57 "grunt": "grunt", 58 "env:start": "node ./tools/local-env/scripts/start.js", 59 "env:stop": "node ./tools/local-env/scripts/docker.js down", 60 "env:restart": "npm run env:stop && npm run env:start", 61 "env:clean": "node ./tools/local-env/scripts/docker.js down -v --remove-orphans", 62 "env:reset": "node ./tools/local-env/scripts/docker.js down --rmi all -v --remove-orphans", 63 "env:install": "node ./tools/local-env/scripts/install.js", 64 "env:cli": "node ./tools/local-env/scripts/docker.js run cli", 65 "env:logs": "node ./tools/local-env/scripts/docker.js logs", 66 "env:pull": "node ./tools/local-env/scripts/docker.js pull", 67 "test:php": "node ./tools/local-env/scripts/docker.js run --rm phpunit phpunit" 68 } 59 69 }
Note: See TracChangeset
for help on using the changeset viewer.