readability/package.json

37 lines
1022 B
JSON
Raw Normal View History

{
"name": "readability",
"version": "0.2.0",
"description": "A standalone version of the readability library used for Firefox Reader View.",
"main": "Readability.js",
"scripts": {
2016-03-10 13:44:06 +00:00
"lint": "eslint .",
2015-03-20 16:35:20 +00:00
"test": "mocha test/test-*.js",
2015-04-01 19:56:08 +00:00
"generate-testcase": "node test/generate-testcase.js",
"perf": "matcha benchmarks/benchmarks.js",
"perf-reference": "READABILITY_PERF_REFERENCE=1 matcha --reporter ./benchmarks/benchmark-reporter.js benchmarks/benchmarks.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/readability"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mozilla/readability/issues"
},
"engines": {
"node": ">=7.0"
},
"homepage": "https://github.com/mozilla/readability",
"devDependencies": {
"chai": "^2.1.*",
"eslint": ">=4.2",
"htmltidy2": "^0.3.0",
"js-beautify": "^1.5.5",
2018-12-24 22:33:51 +00:00
"jsdom": "^13.1",
2015-04-01 19:56:08 +00:00
"matcha": "^0.6.0",
"mocha": "^2.2.*",
"sinon": "^7.3.2"
}
}