|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "hyntax-yx",
- "version": "1.0.9",
- "description": "Straightforward HTML parser for Node.js and browser",
- "keywords": [
- "html",
- "parser",
- "html5",
- "html5 parser",
- "htmlparser",
- "html parser",
- "html tree-constructor",
- "html to JSON",
- "html to AST",
- "html tokenizer",
- "tokenize",
- "tokenizer",
- "stream parsing",
- "stream parser",
- "typescript",
- "types",
- "node.js",
- "node.js html parser"
- ],
- "repository": {
- "type": "git",
- "url": "git@github.com:nik-garmash/hyntax.git"
- },
- "homepage": "https://github.com/nik-garmash/hyntax",
- "bugs": "https://github.com/nik-garmash/hyntax/issues",
- "main": "./index.js",
- "scripts": {
- "test": "tape ${TEST:-'./tests/**/*.test.js'} | tap-spec",
- "coverage": "nyc -x 'tests/**/*' npm test",
- "generate-readme-toc": "./generate-toc.js",
- "prepublishOnly": "babel index.js --out-file index.es5.js && babel lib --out-dir lib-es5"
- },
- "author": {
- "name": "Nikolay Garmash",
- "email": "garmash.nikolay@gmail.com",
- "url": "https://nikgarmash.com"
- },
- "license": "MIT",
- "private": false,
- "engines": {
- "node": ">=6.11.1",
- "npm": ">=5.3.0"
- },
- "devDependencies": {
- "@babel/cli": "^7.5.5",
- "@babel/core": "^7.5.5",
- "@babel/preset-env": "^7.5.5",
- "coveralls": "^3.0.5",
- "deep-diff": "^0.3.8",
- "eslint": "^6.3.0",
- "nyc": "^14.1.1",
- "remark": "^10.0.1",
- "remark-toc": "^5.1.1",
- "tap-spec": "^5.0.0",
- "tape": "^4.11.0"
- }
- }
|