123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "name": "htmlparser2",
- "description": "Fast & forgiving HTML/XML/RSS parser",
- "version": "3.8.3",
- "author": "Felix Boehm <me@feedic.com>",
- "keywords": [
- "html",
- "parser",
- "streams",
- "xml",
- "dom",
- "rss",
- "feed",
- "atom"
- ],
- "repository": {
- "type": "git",
- "url": "git://github.com/fb55/htmlparser2.git"
- },
- "bugs": {
- "mail": "me@feedic.com",
- "url": "http://github.com/fb55/htmlparser2/issues"
- },
- "directories": {
- "lib": "lib/"
- },
- "main": "lib/index.js",
- "scripts": {
- "lcov": "istanbul cover _mocha --report lcovonly -- -R spec",
- "coveralls": "npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)",
- "test": "mocha && npm run lint",
- "lint": "jshint lib test && jscs lib test"
- },
- "dependencies": {
- "domhandler": "2.3",
- "domutils": "1.5",
- "domelementtype": "1",
- "readable-stream": "1.1",
- "entities": "1.0"
- },
- "devDependencies": {
- "mocha": "1",
- "mocha-lcov-reporter": "*",
- "coveralls": "*",
- "istanbul": "*",
- "jscs": "1.5.8",
- "jshint": "2"
- },
- "browser": {
- "readable-stream": false
- },
- "license": "MIT",
- "jshintConfig": {
- "eqeqeq": true,
- "freeze": true,
- "latedef": "nofunc",
- "noarg": true,
- "nonbsp": true,
- "quotmark": "double",
- "undef": true,
- "unused": true,
- "trailing": true,
- "eqnull": true,
- "proto": true,
- "smarttabs": true,
- "node": true,
- "globals": {
- "describe": true,
- "it": true
- }
- }
- }
|