mirror of
https://github.com/Modernizr/Modernizr.git
synced 2026-01-09 15:47:55 -05:00
* Delete .travis.yml * Try again to create Github Actions * Remove global? Seems to cause problems * Try to add Windows support * Remove AppVeyor as GA replaces it :( * Change README * Remove specific branch (to help the renaming) * Update node versions * Remove appveyor from legacy grunt (to see if github doesnt complain) * Update README * Update dependencies * Update testing actions Co-authored-by: Markel F <git@markel.dev>
120 lines
2.9 KiB
JSON
120 lines
2.9 KiB
JSON
{
|
||
"name": "modernizr",
|
||
"version": "3.11.0",
|
||
"description": "Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.",
|
||
"main": "./lib/cli.js",
|
||
"bin": "./bin/modernizr",
|
||
"bugs": "https://github.com/Modernizr/Modernizr/issues",
|
||
"homepage": "https://github.com/Modernizr/Modernizr",
|
||
"repository": "https://github.com/Modernizr/Modernizr.git",
|
||
"license": "MIT",
|
||
"author": {
|
||
"name": "Modernizr",
|
||
"url": "https://modernizr.com/"
|
||
},
|
||
"contributors": [
|
||
{
|
||
"name": "Faruk Ates",
|
||
"url": "https://twitter.com/KuraFire"
|
||
},
|
||
{
|
||
"name": "Paul Irish",
|
||
"url": "https://twitter.com/paul_irish"
|
||
},
|
||
{
|
||
"name": "Alex Sexton",
|
||
"url": "https://twitter.com/SlexAxton"
|
||
},
|
||
{
|
||
"name": "Ryan Seddon",
|
||
"url": "https://twitter.com/ryanseddon"
|
||
},
|
||
{
|
||
"name": "Patrick Kettner",
|
||
"url": "https://twitter.com/patrickkettner"
|
||
},
|
||
{
|
||
"name": "Stu Cox",
|
||
"url": "https://twitter.com/stucoxmedia"
|
||
},
|
||
{
|
||
"name": "Richard Herrera",
|
||
"url": "https://twitter.com/doctyper"
|
||
},
|
||
{
|
||
"name": "Veeck",
|
||
"url": "https://twitter.com/hansalbern"
|
||
}
|
||
],
|
||
"dependencies": {
|
||
"doctrine": "^3.0.0",
|
||
"file": "^0.2.2",
|
||
"lodash": "^4.17.21",
|
||
"markdown-it": "^12.1.0",
|
||
"mkdirp": "1.0.4",
|
||
"requirejs": "^2.3.6",
|
||
"yargs": "^17.0.1"
|
||
},
|
||
"devDependencies": {
|
||
"@alrra/travis-scripts": "^3.0.1",
|
||
"@babel/core": "^7.14.6",
|
||
"@babel/preset-env": "^7.14.7",
|
||
"@babel/register": "^7.14.5",
|
||
"auto-changelog": "^2.3.0",
|
||
"chai": "^4.3.4",
|
||
"codecov": "^3.8.2",
|
||
"del": "^6.0.0",
|
||
"eslint": "^7.30.0",
|
||
"eslint-plugin-jsdoc": "^35.4.3",
|
||
"find-parent-dir": "^0.3.1",
|
||
"fs-extra": "^10.0.0",
|
||
"globby": "^11.0.4",
|
||
"gulp": "^4.0.2",
|
||
"gulp-connect": "^5.7.0",
|
||
"gulp-eslint": "^6.0.0",
|
||
"gulp-pug": "^5.0.0",
|
||
"joi": "^17.4.0",
|
||
"jquery": "^3.6.0",
|
||
"json3": "^3.3.3",
|
||
"mocha": "^9.0.2",
|
||
"mocha-headless-chrome": "^3.1.0",
|
||
"nyc": "^15.1.0",
|
||
"proxyquire": "^2.1.3",
|
||
"serve-static": "^1.14.1",
|
||
"sinon": "^11.1.1",
|
||
"ua-parser-js": "^0.7.28"
|
||
},
|
||
"scripts": {
|
||
"--- DEFAULT SCRIPTS ---": "",
|
||
"start": "gulp default",
|
||
"test": "nyc gulp test",
|
||
"--- GULP SCRIPTS ---": "",
|
||
"clean": "gulp clean",
|
||
"lint": "gulp eslint",
|
||
"--- MODERNIZR SCRIPTS ---": "",
|
||
"serve-gh-pages": "gulp serve:gh-pages",
|
||
"update-gh-pages": "scripts/generate-gh-pages.sh",
|
||
"update-changelog": "auto-changelog --commit-limit false --package",
|
||
"update-license": "node scripts/generate-license.js && git add LICENSE.md"
|
||
},
|
||
"engines": {
|
||
"node": ">=10"
|
||
},
|
||
"files": [
|
||
"LICENSE",
|
||
"README.md",
|
||
"bin/",
|
||
"feature-detects/",
|
||
"lib/",
|
||
"src/"
|
||
],
|
||
"keywords": [
|
||
"modernizr",
|
||
"html5",
|
||
"css3",
|
||
"javascript",
|
||
"browser",
|
||
"feature detection"
|
||
]
|
||
}
|