mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
2ce9109088
* We bump our minimum node version up to >=4. Although this isn't yet necessarily *required* it was spurred on because grunt dropped support for very early node versions and so it's likely some devs will have to upgrade their npm. We do it now which gives us more flexibility for tools going forward (especially for things like new theme/testing). And node has matured the ecosystem (especially supporting properly semver) so should result in less edge cases. * We make the minimum node version explicit in package.json. Though it doesn't help much for older versions of node because npm doesn't have the functionality to warn about it.. ;-) * Left async dependency as it was, because it's only on an RC: 2.0.0-rc.6
21 lines
411 B
JSON
21 lines
411 B
JSON
{
|
|
"name": "Moodle",
|
|
"private": true,
|
|
"description": "Moodle",
|
|
"devDependencies": {
|
|
"async": "1.5.2",
|
|
"eslint": "^3.0.1",
|
|
"grunt": "1.0.1",
|
|
"grunt-contrib-less": "1.3.0",
|
|
"grunt-contrib-uglify": "1.0.1",
|
|
"grunt-contrib-watch": "1.0.0",
|
|
"grunt-eslint": "19.0.0",
|
|
"shifter": "0.5.0",
|
|
"xmldom": "0.1.22",
|
|
"xpath": "0.0.23"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
}
|
|
}
|