page-parser-tree
Version:
Library to find elements in a dynamic web page
71 lines (70 loc) • 2.02 kB
JSON
{
"name": "page-parser-tree",
"version": "0.4.0",
"description": "Library to find elements in a dynamic web page",
"main": "js/index.js",
"sideEffects": false,
"scripts": {
"prepare": "rimraf js && babel -s true -d js/ src/ --ignore '**/*.test.js' && flow-copy-source -v src js --ignore '**/*.test.*'",
"test": "yarn run lint && flow check && jest && tsc",
"lint": "eslint . && prettier-check '**/*.js'",
"lint-fix": "eslint . --fix && prettier --write '**/*.js'"
},
"keywords": [
"livetree",
"liveset",
"mutationobserver",
"browser extension"
],
"author": "Chris Cowan <cowan@streak.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/page-parser-tree.git"
},
"bugs": {
"url": "https://github.com/StreakYC/page-parser-tree/issues"
},
"homepage": "https://github.com/StreakYC/page-parser-tree#readme",
"dependencies": {
"@babel/runtime": "^7.4.5",
"live-set": "^1.0.0",
"matches-selector-ng": "^1.0.0",
"tag-tree": "^1.0.0",
"transducers.js": "^0.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^3.9.1",
"flow-bin": "^0.98.1",
"flow-copy-source": "^2.0.2",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jsdom": "^11.0.0",
"pdelay": "^2.0.0",
"prettier": "^1.14.0",
"prettier-check": "^2.0.0",
"pretty-quick": "^1.6.0",
"rimraf": "^2.6.1",
"typescript": "^3.4.5"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}