jssoup
Version:
JSSoup is a BeautifulSoup style HTML parser library.
46 lines (45 loc) • 1.08 kB
JSON
{
"name": "jssoup",
"version": "0.0.15",
"description": "JSSoup is a BeautifulSoup style HTML parser library.",
"main": "./dist/lib/jssoup.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "mocha --require @babel/register",
"init": "mkdir dist && mkdir dist/lib",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "babel ./lib/*.js -d dist/lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chishui/JSSoup.git"
},
"keywords": [
"html",
"parser",
"beautifulsoup",
"react-native",
"nodejs"
],
"author": "Liyun Xiu <chishui2@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chishui/JSSoup/issues"
},
"homepage": "https://github.com/chishui/JSSoup#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"chai": "^4.3.4",
"mocha": "^9.1.1"
},
"dependencies": {
"htmlparser": "^1.7.7"
}
}