2024-11-03 17:41:45 +01:00

43 lines
1.1 KiB
JSON

{
"name": "http-equiv-refresh",
"description": "Parse an HTML meta refresh value.",
"version": "2.0.1",
"license": "MIT",
"author": "Steven Vachon <contact@svachon.com> (https://svachon.com)",
"repository": "github:stevenvachon/http-equiv-refresh",
"main": "index-es5.js",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-plugin-add-module-exports": "^1.0.2",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"ci": "npm test && nyc report --reporter=text-lcov | coveralls",
"posttest": "nyc report --reporter=text-summary --reporter=html",
"prepublishOnly": "npm test",
"pretest": "babel index.js --out-file=index-es5.js --plugins=babel-plugin-add-module-exports --presets=@babel/env --source-maps",
"test": "nyc --silent mocha test.js --bail --check-leaks"
},
"files": [
"index.js",
"index-es5.js",
"index-es5.js.map"
],
"keywords": [
"html",
"http-equiv",
"meta",
"metadata",
"parse",
"refresh"
]
}